From 7213a6d26ac4e302e9a40008e9ae30c65f8a3f91 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Wed, 11 Sep 2013 19:18:34 -0400 Subject: [PATCH] Shouldn't have put that in the dme --- baystation12.dme | 1 - code/game/objects/items/stacks/sheets/mineral.dm | 7 +++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/baystation12.dme b/baystation12.dme index ac98860c26b..dde8ecee60a 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -1314,6 +1314,5 @@ #include "code\ZAS - vgstation\ZAS_Zones.dm" #include "interface\interface.dm" #include "interface\skin.dmf" -#include "maps\clownplanet.dmm" #include "maps\tgstation-redux-WIP.dmm" // END_INCLUDE diff --git a/code/game/objects/items/stacks/sheets/mineral.dm b/code/game/objects/items/stacks/sheets/mineral.dm index 120a6ffa702..bfdc7c55016 100644 --- a/code/game/objects/items/stacks/sheets/mineral.dm +++ b/code/game/objects/items/stacks/sheets/mineral.dm @@ -205,11 +205,18 @@ var/global/list/datum/stack_recipe/silver_recipes = list ( \ perunit = 2000 sheettype = "clown" + /obj/item/stack/sheet/mineral/clown/New(var/loc, var/amount=null) + recipes = clown_recipes pixel_x = rand(0,4)-4 pixel_y = rand(0,4)-4 ..() +var/global/list/datum/stack_recipe/clown_recipes = list ( \ + new/datum/stack_recipe("bananium computer frame", /obj/structure/computerframe/HONKputer, 10, time = 25, one_per_turf = 1, on_floor = 1), \ + ) + + /****************************** Others ****************************/