Fixes offworlders not getting a bottle of RMT pills when spawning on the Odin (#9930)

This commit is contained in:
Hockaa
2020-09-10 09:14:07 +01:00
committed by GitHub
parent 108e3e2869
commit 24144b826e
3 changed files with 14 additions and 1 deletions

View File

@@ -393,8 +393,9 @@
var/obj/item/clothing/glasses/G = H.glasses
G.prescription = TRUE
if(H.species)
if(H.species && !H.species_items_equipped)
H.species.equip_later_gear(H)
H.species_items_equipped = TRUE
BITSET(H.hud_updateflag, ID_HUD)
BITSET(H.hud_updateflag, IMPLOYAL_HUD)
@@ -528,6 +529,10 @@
var/obj/item/clothing/glasses/G = H.glasses
G.prescription = TRUE
G.autodrobe_no_remove = TRUE
if(H.species && !H.species_items_equipped)
H.species.equip_later_gear(H)
H.species_items_equipped = TRUE
// So shoes aren't silent if people never change 'em.
H.update_noise_level()