New sprites, lower light range

This commit is contained in:
Couls
2019-07-01 00:12:08 -04:00
parent 3555a17855
commit e0a0706c20
2 changed files with 4 additions and 4 deletions
+4 -4
View File
@@ -626,22 +626,22 @@ About the new airlock wires panel:
if(unres_sides & NORTH)
var/image/I = image(icon='icons/obj/doors/airlocks/station/overlays.dmi', icon_state="unres_n") //layer=src.layer+1
I.pixel_y = 32
set_light(l_range = 2, l_power = 1)
set_light(l_range = 1, l_power = 1, l_color = "#00FF00")
add_overlay(I)
if(unres_sides & SOUTH)
var/image/I = image(icon='icons/obj/doors/airlocks/station/overlays.dmi', icon_state="unres_s") //layer=src.layer+1
I.pixel_y = -32
set_light(l_range = 2, l_power = 1)
set_light(l_range = 1, l_power = 1, l_color = "#00FF00")
add_overlay(I)
if(unres_sides & EAST)
var/image/I = image(icon='icons/obj/doors/airlocks/station/overlays.dmi', icon_state="unres_e") //layer=src.layer+1
I.pixel_x = 32
set_light(l_range = 2, l_power = 1)
set_light(l_range = 1, l_power = 1, l_color = "#00FF00")
add_overlay(I)
if(unres_sides & WEST)
var/image/I = image(icon='icons/obj/doors/airlocks/station/overlays.dmi', icon_state="unres_w") //layer=src.layer+1
I.pixel_x = -32
set_light(l_range = 2, l_power = 1)
set_light(l_range = 1, l_power = 1, l_color = "#00FF00")
add_overlay(I)
else
set_light(0)
Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB