Reactiveness 'quick'fix.

This commit is contained in:
Segrain
2013-07-28 13:02:10 +03:00
parent 30dfb446f6
commit 3c4b7507e9
4 changed files with 4 additions and 4 deletions
@@ -1114,7 +1114,7 @@ mob/living/carbon/human/yank_out_object()
set desc = "Remove an embedded item at the cost of bleeding and pain."
set src in view(1)
if(!isliving(usr) || usr.last_click + usr.click_delay < world.time)
if(!isliving(usr) || usr.last_click + usr.click_delay > world.time)
return
usr.delay_click(20)
+1 -1
View File
@@ -900,7 +900,7 @@ mob/verb/yank_out_object()
set desc = "Remove an embedded item at the cost of bleeding and pain."
set src in view(1)
if(!isliving(usr) || usr.last_click + usr.click_delay < world.time)
if(!isliving(usr) || usr.last_click + usr.click_delay > world.time)
return
usr.delay_click(20)
+1 -1
View File
@@ -128,7 +128,7 @@
return
if(killing)
return
if (assailant.last_click + assailant.click_delay < world.time)
if (assailant.last_click + assailant.click_delay > world.time)
return
if ((!( assailant.canmove ) || assailant.lying))
//SN src = null
+1 -1
View File
@@ -600,7 +600,7 @@
set name = "Resist"
set category = "IC"
if(!isliving(usr) || usr.last_click + usr.click_delay < world.time)
if(!isliving(usr) || usr.last_click + usr.click_delay > world.time)
return
usr.delay_click(20)