From a0a01e840eaeb3fd9ee89c8eac07e7a42c0606c5 Mon Sep 17 00:00:00 2001 From: Aranclanos Date: Thu, 5 Dec 2013 08:19:52 -0300 Subject: [PATCH] Removed some items from the spawn_forbidden list of sandbox mode. That list is not for potential "grieff" items. --- code/game/gamemodes/sandbox/h_sandbox.dm | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/code/game/gamemodes/sandbox/h_sandbox.dm b/code/game/gamemodes/sandbox/h_sandbox.dm index c861c214e4e..a96cf6d96d0 100644 --- a/code/game/gamemodes/sandbox/h_sandbox.dm +++ b/code/game/gamemodes/sandbox/h_sandbox.dm @@ -26,14 +26,12 @@ datum/hSB var/objinfo = null var/canisterinfo = null var/hsbinfo = null - // This is a list of banned items, they've been banned due to being technical or just for grief. + //items that shouldn't spawn on the floor because they would bug or act weird var/global/list/spawn_forbidden = list( /obj/item/weapon/grab, /obj/item/tk_grab, /obj/item/weapon/implant, // not implanter, the actual thing that is inside you /obj/item/assembly,/obj/item/device/onetankbomb, /obj/item/radio, /obj/item/device/pda/ai, /obj/item/device/uplink/hidden, /obj/item/smallDelivery, /obj/item/missile,/obj/item/projectile, - /obj/item/borg/sight,/obj/item/borg/overdrive,/obj/item/borg/stun,/obj/item/organ, - /obj/item/alien_embryo,/obj/item/weapon/robot_module,/obj/item/weapon/storage/secure/safe, - /obj/item/weapon/veilrender,/obj/item/device/radio/intercom) + /obj/item/borg/sight,/obj/item/borg/overdrive,/obj/item/borg/stun,/obj/item/weapon/robot_module) proc update() @@ -85,11 +83,10 @@ datum/hSB hsbinfo += "- Toggle Object Spawning
" hsbinfo += "- Toggle Item Spawn Panel Auto-close
" hsbinfo += "Canister Spawning
" - hsbinfo += "Remember, the first rule about adminbuse, is don't talk about the adminbuse
" - hsbinfo += "- !!!DANGER!!! Spawn Plasma Canister
" - hsbinfo += "- !!!DANGER!!! Spawn CO2 Canister
" - hsbinfo += "- !!!DANGER!!! Spawn Nitrogen Canister
" - hsbinfo += "- !!!DANGER!!! Spawn N2O Canister
" + hsbinfo += "- Spawn Plasma Canister
" + hsbinfo += "- Spawn CO2 Canister
" + hsbinfo += "- Spawn Nitrogen Canister
" + hsbinfo += "- Spawn N2O Canister
" else hsbinfo += "Some item spawning may be disabled by the administrators.
" hsbinfo += "Only administrators may spawn dangerous canisters.
"