Replace opacity = X with set_opacity(X) so that the lighting system can update propertly.

This commit is contained in:
Leshana
2017-04-11 00:30:49 -04:00
parent 75cc189723
commit 45058136e2
7 changed files with 18 additions and 18 deletions

View File

@@ -70,11 +70,11 @@
// Create a decorative ramp bottom and flatten out our current ramp.
density = 0
opacity = 0
set_opacity(0)
icon_state = "ramptop"
var/obj/structure/droppod_door/door_bottom = new(T)
door_bottom.deployed = 1
door_bottom.density = 0
door_bottom.opacity = 0
door_bottom.set_opacity(0)
door_bottom.dir = src.dir
door_bottom.icon_state = "rampbottom"