Fix cult summon spam.

This commit is contained in:
Rob Nelson
2014-12-17 12:29:59 -08:00
parent ad3bb62cd0
commit 034409ec6e

View File

@@ -160,8 +160,6 @@ var/list/sacrificed = list()
qdel(src) qdel(src)
return return
/////////////////////////////////////////THIRD RUNE /////////////////////////////////////////THIRD RUNE
/obj/effect/rune/proc/convert() /obj/effect/rune/proc/convert()
@@ -214,9 +212,12 @@ var/global/cult_tearreality_lastattempt=0
var/cultist_count = 0 var/cultist_count = 0
// Spamming this is getting so bad that it's impossible to process ahelps. // Spamming this is getting so bad that it's impossible to process ahelps.
//if((world.time - cult_tearreality_lastattempt) < CULT_TEAR_REALITY_DELAY) if((world.time - cult_tearreality_lastattempt) < CULT_TEAR_REALITY_DELAY)
// return fizzle() for(var/mob/N in range(1,src))
//cult_tearreality_lastattempt=world.time if(iscultist(N))
N << "<span class='warning'>Your failed attempt threw the fabric of the universe into disarray! You must wait five seconds before you can try again.</span>"
return fizzle()
cult_tearreality_lastattempt=world.time
if(universe.name == "Hell Rising") if(universe.name == "Hell Rising")
for(var/mob/N in range(1,src)) for(var/mob/N in range(1,src))