mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-03 22:13:24 +00: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:
@@ -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,)
|
||||
|
||||
@@ -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