Adjusts Laser Eyes

This commit is contained in:
Fox-McCloud
2016-02-12 15:40:27 -05:00
parent 7d30ceb425
commit 3da281caa8
+1 -8
View File
@@ -52,7 +52,7 @@
if(world.time <= next_click)
return
next_click = world.time + 1
if(client.click_intercept)
if(call(client.click_intercept, "ClickOn")(src, params, A))
return
@@ -294,13 +294,6 @@
LE.xo = U.x - T.x
LE.fire()
/mob/living/carbon/human/LaserEyes()
if(nutrition>0)
..()
nutrition = max(nutrition - rand(1,5),0)
else
src << "<span class='danger'>You're out of energy! You need food!</span>"
// Simple helper to face what you clicked on, in case it should be needed in more than one place
/mob/proc/face_atom(atom/A)
if( buckled || stat != CONSCIOUS || !A || !x || !y || !A.x || !A.y )