This commit is contained in:
kevinz000
2020-01-06 03:57:58 -08:00
parent 7378d91684
commit a8cc37eaf0
10 changed files with 55 additions and 50 deletions
+5 -3
View File
@@ -18,7 +18,7 @@
icon_state = "ai"
anchored = TRUE
density = TRUE
canmove = FALSE
mobility_flags = NONE
status_flags = CANSTUN|CANPUSH
a_intent = INTENT_HARM //so we always get pushed instead of trying to swap
sight = SEE_TURFS | SEE_MOBS | SEE_OBJS
@@ -316,8 +316,10 @@
to_chat(src, "<b>You are now [anchored ? "" : "un"]anchored.</b>")
// the message in the [] will change depending whether or not the AI is anchored
/mob/living/silicon/ai/update_canmove() //If the AI dies, mobs won't go through it anymore
return 0
// AIs are immobile
/mob/living/silicon/ai/update_mobility()
mobility_flags = NONE
return NONE
/mob/living/silicon/ai/proc/ai_cancel_call()
set category = "Malfunction"