Implementing movement system flags, fixing simplemob movement delays.

This commit is contained in:
MistakeNot4892
2023-03-12 01:05:53 +11:00
parent 1b3d9ea87f
commit db1a97868d
11 changed files with 63 additions and 22 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
if(prob(1))
owner.custom_pain("Your abdomen feels like it's tearing itself apart!",1)
if(!IS_WALKING(owner))
owner.set_move_intent(/decl/move_intent/walk)
owner.set_move_intent(owner.get_movement_intent_with_flag(MOVEMENT_INTENT_WALKING))
/obj/item/organ/internal/intestine/xeno
color = "#555555"
+1 -1
View File
@@ -39,7 +39,7 @@
if(prob(1))
owner.custom_pain("You feel extremely tired, like you can't move!",1)
if(!IS_WALKING(owner))
owner.set_move_intent(/decl/move_intent/walk)
owner.set_move_intent(owner.get_movement_intent_with_flag(MOVEMENT_INTENT_WALKING))
/obj/item/organ/internal/kidneys/grey
icon_state = "kidneys_grey"