diff --git a/code/datums/storage/storage.dm b/code/datums/storage/storage.dm index 7d524ecee0b..baab88cf239 100644 --- a/code/datums/storage/storage.dm +++ b/code/datums/storage/storage.dm @@ -375,7 +375,7 @@ GLOBAL_LIST_EMPTY(cached_storage_typecaches) SET_PLANE_IMPLICIT(thing, initial(thing.plane)) thing.mouse_opacity = initial(thing.mouse_opacity) thing.screen_loc = null - if(thing.maptext) + if(numerical_stacking) thing.maptext = "" /** diff --git a/code/datums/storage/storage_interface.dm b/code/datums/storage/storage_interface.dm index 6f0543e4e5a..3f3c6c56e0c 100644 --- a/code/datums/storage/storage_interface.dm +++ b/code/datums/storage/storage_interface.dm @@ -113,7 +113,8 @@ for(var/obj/item as anything in storage_contents) item.mouse_opacity = MOUSE_OPACITY_OPAQUE item.screen_loc = "[current_x]:[screen_pixel_x],[current_y]:[screen_pixel_y]" - item.maptext = storage_contents[item] + if(parent_storage.numerical_stacking) + item.maptext = storage_contents[item] SET_PLANE(item, ABOVE_HUD_PLANE, our_turf) current_x++ if(current_x - screen_start_x < columns) diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index b1cb72cba89..547cda399d8 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -125,10 +125,16 @@ mats_per_unit = null return ..() +/obj/item/stack/update_name(updates) + . = ..() + maptext = (ismob(loc) || loc?.atom_storage) ? MAPTEXT("[amount]") : "" + /obj/item/stack/Moved(atom/old_loc, movement_dir, forced, list/old_locs, momentum_change) . = ..() if((!throwing || throwing.target_turf == loc) && old_loc != loc && (flags_1 & INITIALIZED_1)) merge_with_loc(merge_into_ourselves = !isnull(pulledby)) + if(ismob(loc) || ismob(old_loc) || loc?.atom_storage || old_loc?.atom_storage) + update_appearance(UPDATE_NAME) ///Called to lazily update the materials of the item whenever the used or if more is added /obj/item/stack/proc/update_custom_materials()