From d253e13c359a550efc4112b63caae30cd3a87fd7 Mon Sep 17 00:00:00 2001 From: Farie82 Date: Sun, 30 Oct 2022 16:52:21 +0100 Subject: [PATCH] Add a comment for item_state (#19534) --- code/game/objects/items.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index af30c7359d4..4fe62aa333b 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -8,6 +8,7 @@ GLOBAL_DATUM_INIT(welding_sparks, /mutable_appearance, mutable_appearance('icons move_resist = null // Set in the Initialise depending on the item size. Unless it's overriden by a specific item var/discrete = 0 // used in item_attack.dm to make an item not show an attack message to viewers + /// The icon state used to display the item in your inventory. If null then the icon_state value itself will be used var/item_state = null var/lefthand_file = 'icons/mob/inhands/items_lefthand.dmi' var/righthand_file = 'icons/mob/inhands/items_righthand.dmi'