mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 19:52:40 +00:00
Fixes synths not being able to take hunger traits. (#7333)
This commit is contained in:
@@ -78,11 +78,13 @@
|
||||
return
|
||||
|
||||
if(resting)
|
||||
if(isbelly(vore_selected)) //CHOMPEdit Start
|
||||
vore_selected.digest_mode = DM_UNABSORB
|
||||
ai_holder.go_sleep()
|
||||
|
||||
else
|
||||
vore_selected.digest_mode = vore_default_mode
|
||||
if(isbelly(vore_selected))
|
||||
vore_selected.digest_mode = vore_default_mode //CHOMPEdit End
|
||||
ai_holder.go_wake()
|
||||
|
||||
/mob/living/simple_mob/vore/pakkun/attack_hand(mob/user)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
/datum/trait/neutral/metabolism_up
|
||||
can_take = ORGANICS
|
||||
can_take = ORGANICS|SYNTHETICS
|
||||
|
||||
/datum/trait/neutral/metabolism_down
|
||||
can_take = ORGANICS
|
||||
can_take = ORGANICS|SYNTHETICS
|
||||
|
||||
/datum/trait/neutral/metabolism_apex
|
||||
can_take = ORGANICS
|
||||
can_take = ORGANICS|SYNTHETICS
|
||||
@@ -15,6 +15,9 @@
|
||||
if(faction == "Neutral")
|
||||
neutral = TRUE
|
||||
mobspawned = new mobtype(get_turf(GLOB.button_mob_spawner_landmark[link]))
|
||||
if(!istype(mobspawned))
|
||||
mobspawned = null
|
||||
return
|
||||
mobspawned.voremob_loaded = TRUE
|
||||
mobspawned.init_vore()
|
||||
if(neutral == TRUE)
|
||||
|
||||
Reference in New Issue
Block a user