mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
comment out panicwriter and saytesting
This commit is contained in:
@@ -6,12 +6,12 @@
|
||||
var/duration = 0 // delay between start() and finish()
|
||||
|
||||
proc/start(mob/living/carbon/human/H)
|
||||
writepanic("[__FILE__].[__LINE__] ([src.type])([usr ? usr.ckey : ""]) \\proc/start() called tick#: [world.time]")
|
||||
//writepanic("[__FILE__].[__LINE__] ([src.type])([usr ? usr.ckey : ""]) \\proc/start() called tick#: [world.time]")
|
||||
// start the side effect, this should give some cue as to what's happening,
|
||||
// such as gasping. These cues need to be unique among side-effects.
|
||||
|
||||
proc/finish(mob/living/carbon/human/H)
|
||||
writepanic("[__FILE__].[__LINE__] ([src.type])([usr ? usr.ckey : ""]) \\proc/finish() called tick#: [world.time]")
|
||||
//writepanic("[__FILE__].[__LINE__] ([src.type])([usr ? usr.ckey : ""]) \\proc/finish() called tick#: [world.time]")
|
||||
// Finish the side-effect. This should first check whether the cure has been
|
||||
// applied, and if not, cause bad things to happen.
|
||||
|
||||
@@ -77,7 +77,7 @@
|
||||
H.confused += 100
|
||||
|
||||
proc/trigger_side_effect(mob/living/carbon/human/H)
|
||||
writepanic("[__FILE__].[__LINE__] \\/proc/trigger_side_effect() called tick#: [world.time]")
|
||||
//writepanic("[__FILE__].[__LINE__] \\/proc/trigger_side_effect() called tick#: [world.time]")
|
||||
spawn
|
||||
if(!istype(H)) return
|
||||
var/tp = pick(typesof(/datum/genetics/side_effect) - /datum/genetics/side_effect)
|
||||
|
||||
Reference in New Issue
Block a user