diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index 1a45f5a838e..0b248912b93 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -421,7 +421,7 @@ /obj/item/weapon/storage/belt/sabre name = "sabre sheath" - desc = "An ornate sheath designed to hold an officer's blade. Alt-Click to quickly draw the sheathed blade." + desc = "An ornate sheath designed to hold an officer's blade." icon_state = "sheath" item_state = "sheath" storage_slots = 1 @@ -431,8 +431,10 @@ /obj/item/weapon/melee/sabre ) - - +/obj/item/weapon/storage/belt/sabre/examine(mob/user) + ..() + if(contents.len) + user << "Alt-click it to quickly draw the blade." /obj/item/weapon/storage/belt/sabre/AltClick(mob/user) if(!ishuman(user) || !user.canUseTopic(src))