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
This commit is contained in:
hawk.v3@ntlworld.com
2011-09-20 18:27:23 +00:00
parent 238201223e
commit 31281956cb
2 changed files with 7 additions and 7 deletions

View File

@@ -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,)
"/obj/item/weapon/cable_coil" = 2,)

View File

@@ -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
return