Merge pull request #15255 from Heroman3003/butons-fix

Fixes wrong category of hud on the new buttons
This commit is contained in:
Heroman3003
2023-08-14 18:34:48 +10:00
committed by GitHub
2 changed files with 8 additions and 7 deletions
+6 -6
View File
@@ -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
@@ -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.")