comment out panicwriter and saytesting

This commit is contained in:
D3athrow
2015-07-20 16:02:44 -05:00
parent 2867574f47
commit d59f6a07b0
1093 changed files with 7971 additions and 7972 deletions

View File

@@ -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)