Skip to content

Commit

Permalink
Makes all light levels higher outside & Massively lowers vine chance
Browse files Browse the repository at this point in the history
  • Loading branch information
Tk420634 committed Jan 8, 2025
1 parent f937fcb commit b718b6b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions code/controllers/subsystem/nightcycle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,23 @@ SUBSYSTEM_DEF(nightcycle)

// Variables for badmining
var/sunrise_sun_color = "#073f0e"
var/sunrise_sun_power = 65
var/sunrise_sun_power = 85
var/morning_sun_color = "#073f0e"
var/morning_sun_power = 85
var/morning_sun_power = 105
var/latemorn_sun_color = "#073f0e"
var/latemorn_sun_power = 95
var/latemorn_sun_power = 115
var/daytime_sun_color = "#073f0e"
var/daytime_sun_power = 125
var/daytime_sun_power = 145
var/afternoon_sun_color = "#073f0e"
var/afternoon_sun_power = 90
var/afternoon_sun_power = 110
var/lateafternoon_sun_color = "#073f0e"
var/lateafternoon_sun_power = 75
var/sunset_sun_color = "#073f0e"
var/sunset_sun_power = 52
var/sunset_sun_power = 95
var/fullsunset_sun_color = "#073f0e"
var/fullsunset_sun_power = 44
var/fullsunset_sun_power = 65
var/nighttime_sun_color = "#073f0e"
var/nighttime_sun_power = 33 // dark as shit brooo
var/nighttime_sun_power = 55 // dark as shit brooo

/// If defined with any number besides null it will determine how long each cycle lasts.
// var/custom_cycle_wait = 1600 SECONDS
Expand Down
2 changes: 1 addition & 1 deletion code/game/turfs/closed.dm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GLOBAL_VAR_INIT(debug_trollvines, TRUE)
for(var/turf/T in orange(1, src))
if(T.density)
continue
if(prob(15))
if(prob(0.01))
// if((GLOB.debug_trollvines || prob(1)) && GLOB.trollvines < GLOB.max_trollvines)
// GLOB.trollvines++
// new /datum/spacevine_controller(get_turf(src), list(pick(subtypesof(/datum/spacevine_mutation))), rand(30,100), rand(5,10), src) //spawn a controller at turf with randomized stats and a single random mutation
Expand Down

0 comments on commit b718b6b

Please sign in to comment.