Use dynamic placeholder potion type instead of null for custom potion colors

This commit is contained in:
Daniel Saukel
2019-03-07 18:41:45 +01:00
parent edea97f9a2
commit 314889be89
+1 -1
View File
@@ -710,7 +710,7 @@ public class Brew {
public PotionColor(Color color) { public PotionColor(Color color) {
colorId = -1; colorId = -1;
type = null; type = WATER.getType();
this.color = color; this.color = color;
} }