mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-20 12:29:23 +01:00
Character Preview Augments (#19196)
* Augments such as the Idris Faceplate are now visible in the character preview screen. 
This commit is contained in:
@@ -820,8 +820,7 @@ SUBSYSTEM_DEF(jobs)
|
||||
log_loadout("EA/([H]): Abort: invalid arguments.")
|
||||
return FALSE
|
||||
|
||||
var/datum/job/rank = GetJob(H.mind.assigned_role)
|
||||
|
||||
var/datum/job/rank = H.mind ? GetJob(H.mind.assigned_role) : prefs.return_chosen_high_job()
|
||||
switch (rank.title)
|
||||
if ("AI", "Cyborg")
|
||||
log_loadout("EA/([H]): Abort: synthetic.")
|
||||
|
||||
@@ -223,9 +223,12 @@
|
||||
if((equip_preview_mob & EQUIP_PREVIEW_JOB) && previewJob)
|
||||
previewJob.equip_preview(mannequin, player_alt_titles[previewJob.title], faction)
|
||||
|
||||
if(equip_preview_mob & EQUIP_PREVIEW_LOADOUT && leftovers.len)
|
||||
if((equip_preview_mob & EQUIP_PREVIEW_LOADOUT) && leftovers.len)
|
||||
SSjobs.EquipCustomDeferred(mannequin, src, leftovers, used_slots)
|
||||
|
||||
if(equip_preview_mob & EQUIP_PREVIEW_LOADOUT)
|
||||
SSjobs.EquipAugments(mannequin, src)
|
||||
|
||||
if (!SSATOMS_IS_PROBABLY_DONE)
|
||||
SSatoms.CreateAtoms(list(mannequin))
|
||||
mannequin.regenerate_icons()
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
author: Geeves
|
||||
|
||||
delete-after: True
|
||||
|
||||
changes:
|
||||
- rscadd: "Augments such as the Idris Faceplate are now visible in the character preview screen."
|
||||
Reference in New Issue
Block a user