From b373917cbae4fb19a9628a1442f13368667e557d Mon Sep 17 00:00:00 2001 From: "Daelith.Rhedynfre@gmail.com" Date: Mon, 8 Aug 2011 17:17:21 +0000 Subject: [PATCH] -The Offhand icon no longer appears on the ground when dropped (For whatever reason) -Singularity beacon now costs 7 points instead of 3. This is due to the item being EXTREMELY powerful, being released every round, and still allowing players to pick up one or two other good items. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1994 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/objects/devices/PDA/uplink.dm | 6 +++--- code/game/objects/items/weapons/twohanded.dm | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/code/game/objects/devices/PDA/uplink.dm b/code/game/objects/devices/PDA/uplink.dm index e6edeca8520..5f33623e3bb 100644 --- a/code/game/objects/devices/PDA/uplink.dm +++ b/code/game/objects/devices/PDA/uplink.dm @@ -59,7 +59,7 @@ menu_message += "Binary Translator (3)
" menu_message += "Hacked AI Module (7)
" menu_message += "
" - menu_message += "Singularity Beacon (does not include a screwdriver) (3)
" + menu_message += "Singularity Beacon (does not include a screwdriver) (7)
" menu_message += "
" menu_message += "Syndicate Toolbox (Includes various tools) (1)
" menu_message += "Syndicate Balloon (Useless) (10)
" @@ -185,8 +185,8 @@ uses -= 3 new /obj/item/device/radio/headset/traitor(get_turf(hostpda)) if("singubeacon") - if(uses >= 3) - uses -= 3 + if(uses >= 7) + uses -= 7 new /obj/machinery/singularity_beacon/syndicate(get_turf(hostpda)) if("toolbox") if(uses) diff --git a/code/game/objects/items/weapons/twohanded.dm b/code/game/objects/items/weapons/twohanded.dm index 0ebbfb724f9..8350cbcf524 100644 --- a/code/game/objects/items/weapons/twohanded.dm +++ b/code/game/objects/items/weapons/twohanded.dm @@ -22,5 +22,7 @@ //welp, all is good, now to see if he's trying do twohandedly wield it or unwield it + ..() - ..() \ No newline at end of file +/obj/item/weapon/offhand/dropped(mob/user as mob) + del(src) \ No newline at end of file