mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Recycling Added, and fixed some admin things.
+ Bomb-deletion-related stuff, which was removed for some fucking reason. + Added recycling machines + Added recycling procs to atoms + Restructured disposals for a proper recycling plant. + Fixed a few typos I noticed.
This commit is contained in:
@@ -545,7 +545,7 @@ var/global/floorIsLava = 0
|
||||
<A href='?src=\ref[src];secretsfun=spiders'>Trigger a Spider infestation</A><BR>
|
||||
<A href='?src=\ref[src];secretsfun=spaceninja'>Send in a space ninja</A><BR>
|
||||
<A href='?src=\ref[src];secretsfun=striketeam'>Send in a strike team</A><BR>
|
||||
<A href='?src=\ref[src];secretsfun=carp'>Trigger an Carp migration</A><BR>
|
||||
<A href='?src=\ref[src];secretsfun=carp'>Trigger a Carp migration</A><BR>
|
||||
<A href='?src=\ref[src];secretsfun=radiation'>Irradiate the station</A><BR>
|
||||
<A href='?src=\ref[src];secretsfun=prison_break'>Trigger a Prison Break</A><BR>
|
||||
<A href='?src=\ref[src];secretsfun=virus'>Trigger a Virus Outbreak</A><BR>
|
||||
|
||||
@@ -2120,7 +2120,19 @@
|
||||
var/ok = 0
|
||||
switch(href_list["secretsadmin"])
|
||||
if("clear_bombs")
|
||||
//I do nothing
|
||||
var/num=0
|
||||
for(var/obj/item/device/transfer_valve/TV in world)
|
||||
if(TV.tank_one||TV.tank_two)
|
||||
del(TV)
|
||||
TV++
|
||||
message_admins("[key_name_admin(usr)] has removed [num] bombs", 1)
|
||||
if("detonate_bombs")
|
||||
var/num=0
|
||||
for(var/obj/item/device/transfer_valve/TV in world)
|
||||
if(TV.tank_one||TV.tank_two)
|
||||
TV.toggle_valve()
|
||||
message_admins("[key_name_admin(usr)] has toggled valves on [num] bombs", 1)
|
||||
|
||||
if("list_bombers")
|
||||
var/dat = "<B>Bombing List<HR>"
|
||||
for(var/l in bombers)
|
||||
|
||||
Reference in New Issue
Block a user