Quick edit to the blob spawn in notes.

Mime wall recharge time is now equal to the time for the wall to vanish.  In short you can only have one wall up at a time.  The walls also finally have a bullet_act proc so hiding on top of walls is much less effective.


git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2278 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
mport2004@gmail.com
2011-09-27 09:48:09 +00:00
parent cf0023bbb2
commit 7ec232dea6
4 changed files with 16 additions and 2 deletions
+13
View File
@@ -136,6 +136,19 @@
density = 1
unacidable = 1
bullet_act(var/obj/item/projectile/Proj, var/def_zone)
var/turf/T = get_turf(src.loc)
if(T)
for(var/obj/O in T)
if(O != src)
O.bullet_act(Proj,def_zone)
for(var/mob/M in T)
M.bullet_act(Proj, def_zone)
..()
/client/proc/forcewall()
set category = "Spells"
+1 -1
View File
@@ -714,7 +714,7 @@
usr << "You still haven't atoned for your speaking transgression. Wait."
return
usr.verbs -= /client/proc/mimewall
spawn(100)
spawn(300)
usr.verbs += /client/proc/mimewall
for (var/mob/V in viewers(usr))
if(V!=usr)