diff --git a/code/modules/mob/holder.dm b/code/modules/mob/holder.dm index bd20932beba..d3ac33ece45 100644 --- a/code/modules/mob/holder.dm +++ b/code/modules/mob/holder.dm @@ -348,17 +348,10 @@ var/list/holder_mob_icon_cache = list() sync(contained) /obj/item/holder/proc/sync(var/mob/living/M) - dir = SOUTH - cut_overlays() - icon = M.icon - icon_state = M.icon_state - item_state = M.item_state - color = M.color name = M.name - desc = M.desc - overlays |= M.overlays - - update_held_icon() + overlays = M.overlays + dir = M.dir + reagents = M.reagents //#TODO-MERGE //Port the reduced-duplication holder method from baystation upstream: diff --git a/html/changelogs/HeldFix.yml b/html/changelogs/HeldFix.yml new file mode 100644 index 00000000000..2124706c4c0 --- /dev/null +++ b/html/changelogs/HeldFix.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - bugfix: "Held mob sprites should now work again."