mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-04 14:33:10 +00:00
Fixes offworlders not getting a bottle of RMT pills when spawning on the Odin (#9930)
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user