Skip to content

Commit

Permalink
words
Browse files Browse the repository at this point in the history
  • Loading branch information
BeagleGaming1 committed Jul 9, 2023
1 parent f80487d commit f6468ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/controllers/configuration/entries/game_options.dm
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
config_entry_value = 1
integer = FALSE

/datum/config_entry/number/burst_timer
/datum/config_entry/number/embryo_burst_timer
min_val = 1
config_entry_value = 7.5 MINUTES
integer = TRUE
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/xenomorph/Embryo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
/obj/item/alien_embryo/proc/process_growth()
var/datum/hive_status/hive = GLOB.hive_datum[hivenumber]
//The total time the person is hugged divided by stages until burst
var/per_stage_hugged_time = CONFIG_GET(number/burst_timer)/5
var/per_stage_hugged_time = CONFIG_GET(number/embryo_burst_timer)/5
//Low temperature seriously hampers larva growth (as in, way below livable), so does stasis
if(!hive.hardcore) // Cannot progress if the hive has entered hardcore mode.
if(affected_mob.in_stasis || affected_mob.bodytemperature < 170)
Expand Down
4 changes: 2 additions & 2 deletions config/example/config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -240,5 +240,5 @@ GAMEMODE_ROUNDS_NEEDED 5
## Default gamemode to auto-switch back to after a round has concluded
GAMEMODE_DEFAULT extended

## How long the mob will take to burst in seconds
# BURST_TIMER 450
## How long the mob will take to chestburst in seconds
#EMBRYO_BURST_TIMER 450

0 comments on commit f6468ed

Please sign in to comment.