mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-26 05:27:01 +01:00
Fixes 2 Bugs with PR #5416
First bug: Changing your alt head in CMA wouldn't update it correctly. You had to proc update_body(1, 1) twice in order to do it because of where the head_organ.handle_alt_icon() proc call was placed in organ_icons. Resolved Second bug: Lack of sanity and inability to select head marking styles with "all" alt heads allowed. Resolved
This commit is contained in:
@@ -159,12 +159,12 @@ var/global/list/limb_icon_cache = list()
|
||||
gender = "f"
|
||||
else
|
||||
gender = "m"
|
||||
new_icon_state = "[icon_name][gender ? "_[gender]" : ""]"
|
||||
|
||||
if(limb_name == "head")
|
||||
var/obj/item/organ/external/head/head_organ = src
|
||||
head_organ.handle_alt_icon()
|
||||
|
||||
new_icon_state = "[icon_name][gender ? "_[gender]" : ""]"
|
||||
|
||||
if(skeletal)
|
||||
icon_file = 'icons/mob/human_races/r_skeleton.dmi'
|
||||
else if(status & ORGAN_ROBOT)
|
||||
|
||||
Reference in New Issue
Block a user