mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 06:00:23 +01:00
Work around spacemandmm suite bug
This commit is contained in:
@@ -144,7 +144,8 @@
|
||||
var/image/I
|
||||
|
||||
for(var/i = 1 to 4)
|
||||
I = image('icons/obj/sandbags.dmi', "sandbags[connections?[i] || 0]", dir = 1<<(i-1))
|
||||
var/connect = connections?[i] || 0
|
||||
I = image('icons/obj/sandbags.dmi', "sandbags[connect]", dir = 1<<(i-1))
|
||||
I.color = material.icon_colour
|
||||
add_overlay(I)
|
||||
|
||||
|
||||
@@ -51,7 +51,8 @@
|
||||
var/image/I
|
||||
if(!hatch_open)
|
||||
for(var/i = 1 to 4)
|
||||
I = image(icon, "catwalk[connections?[i] || 0]", dir = 1<<(i-1))
|
||||
var/connect = connections?[i] || 0
|
||||
I = image(icon, "catwalk[connect]", dir = 1<<(i-1))
|
||||
add_overlay(I)
|
||||
if(plating_color)
|
||||
I = image(icon, "plated")
|
||||
|
||||
Reference in New Issue
Block a user