diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm index 1a1a85d5c31..da17e7616f3 100644 --- a/code/_onclick/hud/human.dm +++ b/code/_onclick/hud/human.dm @@ -270,7 +270,7 @@ autowhisper_display.name = "autowhisper" autowhisper_display.screen_loc = ui_under_health hud_elements |= autowhisper_display - other |= autowhisper_display + adding |= autowhisper_display var/obj/screen/aw = new /obj/screen() aw.icon = 'icons/mob/screen/minimalist.dmi' @@ -278,7 +278,7 @@ aw.name = "autowhisper mode" aw.screen_loc = ui_under_health hud_elements |= aw - other |= aw + adding |= aw aw = new /obj/screen() aw.icon = 'icons/mob/screen/minimalist.dmi' @@ -286,7 +286,7 @@ aw.name = "check known languages" aw.screen_loc = ui_under_health hud_elements |= aw - other |= aw + adding |= aw aw = new /obj/screen() aw.icon = 'icons/mob/screen/minimalist.dmi' @@ -294,7 +294,7 @@ aw.name = "set pose" aw.screen_loc = ui_under_health hud_elements |= aw - other |= aw + adding |= aw aw = new /obj/screen() aw.icon = 'icons/mob/screen/minimalist.dmi' @@ -302,7 +302,7 @@ aw.name = "move upwards" aw.screen_loc = ui_under_health hud_elements |= aw - other |= aw + adding |= aw aw = new /obj/screen() aw.icon = 'icons/mob/screen/minimalist.dmi' @@ -310,7 +310,7 @@ aw.name = "move downwards" aw.screen_loc = ui_under_health hud_elements |= aw - other |= aw + adding |= aw aw = new /obj/screen() aw.icon = HUD.ui_style diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/succlet.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/succlet.dm index f3c91ea4f81..c5205d5ecda 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/succlet.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/succlet.dm @@ -121,7 +121,8 @@ for(var/turf/T in view(world.view, get_turf(src))) //No, so let's pick a turf to travel to if(isturf(T)) mylist |= T - succlet_move(pick(mylist)) + if(mylist.len) + succlet_move(pick(mylist)) succlet_last_health = health //The succlet will try to move if it has taken damage /mob/living/simple_mob/vore/alienanimals/succlet/death(gibbed, deathmessage = "shrieks in agony as it is eradicated from reality.")