Bug fixes and paincrit balances

This commit is contained in:
ZomgPonies
2013-10-31 04:07:57 -04:00
parent b2b3faebc0
commit 81d393d20b
4 changed files with 40 additions and 19 deletions
+9
View File
@@ -134,6 +134,15 @@
in_chamber.current = curloc
in_chamber.yo = targloc.y - curloc.y
in_chamber.xo = targloc.x - curloc.x
if(istype(user, /mob/living/carbon))
var/mob/living/carbon/mob = user
if(mob.shock_stage > 120)
in_chamber.yo += rand(-2,2)
in_chamber.xo += rand(-2,2)
else if(mob.shock_stage > 70)
in_chamber.yo += rand(-1,1)
in_chamber.xo += rand(-1,1)
if(params)
var/list/mouse_control = params2list(params)