mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-16 13:12:22 +00:00
Tensioner now requires a half an hour of round time before firing
Fix for the holodeck burn simulation cooling off over time. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3349 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
#define EXPLO_SCORE -10000 //boum
|
||||
|
||||
#define COOLDOWN_TIME 12000 // Twenty minutes
|
||||
#define MIN_ROUND_TIME 18000
|
||||
|
||||
//estimated stats
|
||||
//80 minute round
|
||||
@@ -66,7 +67,7 @@ var/global/datum/tension/tension_master
|
||||
score += get_num_players()*PLAYER_WEIGHT
|
||||
|
||||
if(config.Tensioner_Active)
|
||||
if(score > 100000)
|
||||
if(score > 100000 && world.time > MIN_ROUND_TIME)
|
||||
round1++
|
||||
if(!supress && !cooldown)
|
||||
if(prob(1) || forcenexttick)
|
||||
|
||||
Reference in New Issue
Block a user