From 425a09f22675a110c45aaa70802c6dd5e1dbcfd9 Mon Sep 17 00:00:00 2001 From: PKPenguin321 Date: Thu, 22 Sep 2016 15:47:53 -0700 Subject: [PATCH] makes saber sheath examine fancier --- code/game/objects/items/weapons/storage/belt.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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))