-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
This commit is contained in:
Daelith.Rhedynfre@gmail.com
2011-08-08 17:17:21 +00:00
parent fd40fa4632
commit b373917cba
2 changed files with 6 additions and 4 deletions
+3 -3
View File
@@ -59,7 +59,7 @@
menu_message += "<A href='byond://?src=\ref[src];buy_item=botchat'>Binary Translator</A> (3)<BR>"
menu_message += "<A href='byond://?src=\ref[src];buy_item=lawmod'>Hacked AI Module</A> (7)<BR>"
menu_message += "<BR>"
menu_message += "<A href='byond://?src=\ref[src];buy_item=singubeacon'>Singularity Beacon</A> (does not include a screwdriver) (3)<BR>"
menu_message += "<A href='byond://?src=\ref[src];buy_item=singubeacon'>Singularity Beacon</A> (does not include a screwdriver) (7)<BR>"
menu_message += "<BR>"
menu_message += "<A href='byond://?src=\ref[src];buy_item=toolbox'>Syndicate Toolbox</A> (Includes various tools) (1)<BR>"
menu_message += "<A href='byond://?src=\ref[src];buy_item=balloon'>Syndicate Balloon</A> (Useless) (10)<BR>"
@@ -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)
+3 -1
View File
@@ -22,5 +22,7 @@
//welp, all is good, now to see if he's trying do twohandedly wield it or unwield it
..()
..()
/obj/item/weapon/offhand/dropped(mob/user as mob)
del(src)