mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 05:57:24 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user