mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 14:07:51 +01:00
Changed binary translator cost back to 3. 4 was a bit too much, 1 is just way too little. 3 is just right.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1066 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -47,7 +47,7 @@
|
||||
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=powersink'>Power Sink</A> (5)<BR>"
|
||||
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=detomatix'>Detomatix Cartridge</A> (3)<BR>"
|
||||
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=space'>Syndicate-made Space Suit (inludes a helmet)</A> (3)<BR>"
|
||||
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=botchat'>Binary Translator</A> (1)<BR>"
|
||||
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=botchat'>Binary Translator</A> (3)<BR>"
|
||||
src.menu_message += "<HR>"
|
||||
return
|
||||
|
||||
@@ -149,8 +149,8 @@
|
||||
new /obj/item/clothing/suit/space/syndicate(get_turf(src.hostpda))
|
||||
new /obj/item/clothing/head/helmet/space/syndicate(get_turf(src.hostpda))
|
||||
if("botchat")
|
||||
if (src.uses >= 1)
|
||||
src.uses -= 1
|
||||
if (src.uses >= 3)
|
||||
src.uses -= 3
|
||||
new /obj/item/device/radio/headset/traitor(get_turf(src.hostpda))
|
||||
|
||||
src.generate_menu()
|
||||
|
||||
Reference in New Issue
Block a user