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
+4 -4
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