diff --git a/src/main/scala/li/cil/oc/common/tileentity/Hologram.scala b/src/main/scala/li/cil/oc/common/tileentity/Hologram.scala index 196e1ed4d..a8d26f730 100644 --- a/src/main/scala/li/cil/oc/common/tileentity/Hologram.scala +++ b/src/main/scala/li/cil/oc/common/tileentity/Hologram.scala @@ -227,7 +227,7 @@ class Hologram(var tier: Int) extends traits.Environment with SidedEnvironment w // Change byte order here to allow passing stored color to OpenGL "as-is" // (as whole Int, i.e. 0xAABBGGRR, alpha is unused but present for alignment) colors(index - 1) = convertColor(value) - ServerPacketSender.sendHologramColor(this, index - 1, value) + ServerPacketSender.sendHologramColor(this, index - 1, colors(index - 1)) result(oldValue) }