Merge pull request #3378 from Segrain/dev

Fix for #3354.
This commit is contained in:
Zuhayr
2013-07-28 10:38:15 -07:00
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)