Refactors revenants to basic mobs (#30661)

This commit is contained in:
PollardTheDragon
2025-10-28 13:26:16 +00:00
committed by GitHub
parent 0f250ed33d
commit a3b2c3a251
13 changed files with 65 additions and 63 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ GLOBAL_DATUM_INIT(default_state, /datum/ui_state/default, new)
return UI_INTERACTIVE
return UI_CLOSE
/mob/living/simple_animal/revenant/default_can_use_topic(src_object)
/mob/living/basic/revenant/default_can_use_topic(src_object)
return UI_UPDATE
/mob/living/simple_animal/demon/pulse_demon/default_can_use_topic(src_object)
+1 -1
View File
@@ -29,5 +29,5 @@ GLOBAL_DATUM_INIT(hands_state, /datum/ui_state/hands_state, new)
return UI_INTERACTIVE
return UI_CLOSE
/mob/living/simple_animal/revenant/hands_can_use_topic(src_object)
/mob/living/basic/revenant/hands_can_use_topic(src_object)
return UI_UPDATE
+1 -1
View File
@@ -31,7 +31,7 @@ GLOBAL_DATUM_INIT(physical_state, /datum/ui_state/physical, new)
/mob/living/silicon/ai/physical_can_use_topic(src_object)
return UI_UPDATE // AIs are not physical.
/mob/living/simple_animal/revenant/physical_can_use_topic(src_object)
/mob/living/basic/revenant/physical_can_use_topic(src_object)
return UI_UPDATE
/**