Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit c276f16

Browse files
e
1 parent d04c9f6 commit c276f16

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

code/__DEFINES/research.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,5 @@
9191
///This determines how many general points that the ruin_tech techweb gets, since they don't utilize servers
9292
#define RUIN_GENERATION_PER_TICK 70
9393

94-
///This determines how many nanites points that the ruin_tech techweb gets, since they lack research tools.
95-
#define NANITES_RESEARCH_RUIN_PER_TICK 10
94+
///This determines how many nanites/AI points that the ruin_tech techweb gets, since they lack research tools.
95+
#define NANITES_AI_RESEARCH_RUIN_PER_TICK 10

code/controllers/subsystem/research.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ SUBSYSTEM_DEF(research)
9191
science_tech.remove_stored_point_type(i, boost_amt)
9292
science_tech.add_point_list(bitcoins)
9393
//add RUIN_GENERATION_PER_TICK even without any servers, for things like freeminers
94-
ruin_tech.add_point_list(list(TECHWEB_POINT_TYPE_GENERIC = RUIN_GENERATION_PER_TICK, TECHWEB_POINT_TYPE_NANITES = NANITES_RESEARCH_RUIN_PER_TICK))
94+
ruin_tech.add_point_list(list(TECHWEB_POINT_TYPE_GENERIC = RUIN_GENERATION_PER_TICK, TECHWEB_POINT_TYPE_NANITES = NANITES_AI_RESEARCH_RUIN_PER_TICK, TECHWEB_POINT_TYPE_AI = NANITES_AI_RESEARCH_RUIN_PER_TICK))
9595
last_income = world.time
9696

9797
/datum/controller/subsystem/research/proc/calculate_server_coefficient() //Diminishing returns.

0 commit comments

Comments
 (0)