Bug fixes+ Tiny hardsuit update (#1298)

Fire extinguishers can no longer be filled with blank units.
You can no longer spam buy announcements with the traitor uplink services tab (Thank god) http://imgur.com/a/hqSdS
CE hardsuit now a bit more fire resistant. RD hardsuit now has a good deal of EMP resistance, but nerfed the protection stats a bit. (makes since because the RD works with artifacts that can EMP, right?)
This commit is contained in:
printer16
2016-12-28 18:45:27 +02:00
committed by skull132
parent 7a9adc2aba
commit 8e5d2a069f
7 changed files with 57 additions and 16 deletions
+21 -5
View File
@@ -87,8 +87,16 @@
item_cost = 2
/datum/uplink_item/abstract/announcements/fake_ion_storm/get_goods(var/obj/item/device/uplink/U, var/loc)
ion_storm_announcement()
return 1
var/static/cooldown = 0
if(cooldown != 1)
ion_storm_announcement()
cooldown = 1
spawn(240)
cooldown = 0
return 1
else
loc << "<span class='danger'>This service is on cooldown! Try again in a bit!</span>"
return 0
/datum/uplink_item/abstract/announcements/fake_radiation
name = "Radiation Storm Announcement"
@@ -96,6 +104,14 @@
item_cost = 6
/datum/uplink_item/abstract/announcements/fake_radiation/get_goods(var/obj/item/device/uplink/U, var/loc)
var/datum/event_meta/EM = new(EVENT_LEVEL_MUNDANE, "Fake Radiation Storm", add_to_queue = 0)
new/datum/event/radiation_storm/syndicate(EM)
return 1
var/static/cooldown = 0
if(cooldown != 1)
var/datum/event_meta/EM = new(EVENT_LEVEL_MUNDANE, "Fake Radiation Storm", add_to_queue = 0)
new/datum/event/radiation_storm/syndicate(EM)
cooldown = 1
spawn(240)
cooldown = 0
return 1
else
loc << "<span class='danger'>This service is on cooldown! Try again in a bit!</span>"
return 0