From 31281956cb941605a8c74fe25d6f87ec30f91dde Mon Sep 17 00:00:00 2001 From: "hawk.v3@ntlworld.com" Date: Tue, 20 Sep 2011 18:27:23 +0000 Subject: [PATCH] Fix for the Cloner creation issue, it was missing the "Please add some cables" line. Unless I got confused as to the problem, should work now. Doubled the burntime for candles. I did test these, but knowing my luck, something else broke. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2235 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/machinery/constructable_frame.dm | 6 +++--- code/game/objects/items/candle.dm | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm index 3e5414f0a5e..b813c76ef5b 100644 --- a/code/game/machinery/constructable_frame.dm +++ b/code/game/machinery/constructable_frame.dm @@ -215,7 +215,7 @@ obj/item/weapon/circuitboard/rdserver build_path = "/obj/machinery/clonepod" board_type = "machine" origin_tech = "programming=3;biotech=3" - frame_desc = "Requires 2 Manipulator, 2 Scanning Module and 1 Console Screen." + frame_desc = "Requires 2 Manipulator, 2 Scanning Module, 2 pieces of cable and 1 Console Screen." req_components = list( "/obj/item/weapon/cable_coil" = 2, "/obj/item/weapon/stock_parts/scanning_module" = 2, @@ -227,10 +227,10 @@ obj/item/weapon/circuitboard/rdserver build_path = "/obj/machinery/dna_scannernew" board_type = "machine" origin_tech = "programming=2;biotech=2" - frame_desc = "Requires 1 Scanning module, 1 Manipulator, 1 Micro-Laser and 1 Console Screen." + frame_desc = "Requires 1 Scanning module, 1 Manipulator, 1 Micro-Laser, 2 pieces of cable and 1 Console Screen." req_components = list( "/obj/item/weapon/stock_parts/scanning_module" = 1, "/obj/item/weapon/stock_parts/manipulator" = 1, "/obj/item/weapon/stock_parts/micro_laser" = 1, "/obj/item/weapon/stock_parts/console_screen" = 1, - "/obj/item/weapon/cable_coil" = 2,) \ No newline at end of file + "/obj/item/weapon/cable_coil" = 2,) diff --git a/code/game/objects/items/candle.dm b/code/game/objects/items/candle.dm index 3d2d7b6e36a..ccb9cc1e878 100644 --- a/code/game/objects/items/candle.dm +++ b/code/game/objects/items/candle.dm @@ -8,7 +8,7 @@ item_state = "candle1" var - wax = 100 + wax = 200 lit = 0 proc light(var/flavor_text = "\red [usr] lights the [name].") @@ -16,9 +16,9 @@ update_icon() var/i - if(wax>75) + if(wax>150) i = 1 - else if(wax>40) + else if(wax>80) i = 2 else i = 3 icon_state = "candle[i][lit ? "_lit" : ""]" @@ -118,4 +118,4 @@ else return ..() src.update_icon() - return \ No newline at end of file + return