From 89f04ed3e91b3e6eb5628d1862e2d22d1180b711 Mon Sep 17 00:00:00 2001 From: Sunny Kim <58885089+sk7725@users.noreply.github.com> Date: Sat, 17 Oct 2020 01:22:07 +0900 Subject: [PATCH] oh no --- core/src/mindustry/content/StatusEffects.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/mindustry/content/StatusEffects.java b/core/src/mindustry/content/StatusEffects.java index dc9758d54e..b498ccd2c0 100644 --- a/core/src/mindustry/content/StatusEffects.java +++ b/core/src/mindustry/content/StatusEffects.java @@ -35,7 +35,7 @@ public class StatusEffects implements ContentList{ }}; freezing = new StatusEffect("freezing"){{ - color = Liquids.cryofluid.color; + color = Color.valueOf("6ecdec"); speedMultiplier = 0.6f; healthMultiplier = 0.8f; effect = Fx.freezing; @@ -86,7 +86,7 @@ public class StatusEffects implements ContentList{ }}; melting = new StatusEffect("melting"){{ - color = Liquids.slag.color; + color = Color.valueOf("ffa166"); speedMultiplier = 0.8f; healthMultiplier = 0.8f; damage = 0.3f; @@ -114,7 +114,7 @@ public class StatusEffects implements ContentList{ }}; tarred = new StatusEffect("tarred"){{ - color = Liquids.oil.color; + color = Color.valueOf("313131"); speedMultiplier = 0.6f; effect = Fx.oily; @@ -160,7 +160,7 @@ public class StatusEffects implements ContentList{ }}; blasted = new StatusEffect("blasted"){{ - color = Items.blastCompound.color; + color = Color.valueOf("ff795e"); }}; corroded = new StatusEffect("corroded"){{