Added custom floor for Love chest

This commit is contained in:
LCastr0 2017-02-02 12:28:10 -02:00
parent d06c445e9c
commit 9024bb6569

View File

@ -89,6 +89,11 @@ public class BlockChangeAnimation extends Animation
mat = Material.STAINED_CLAY; mat = Material.STAINED_CLAY;
data = 13; data = 13;
} }
else if (getTreasure().getTreasureType() == TreasureType.LOVE_CHEST)
{
mat = Material.WOOL;
data = 6;
}
else else
continue; continue;
@ -131,6 +136,11 @@ public class BlockChangeAnimation extends Animation
mat = Material.STAINED_CLAY; mat = Material.STAINED_CLAY;
data = 14; data = 14;
} }
else if (getTreasure().getTreasureType() == TreasureType.LOVE_CHEST)
{
mat = Material.WOOL;
data = 14;
}
else else
continue; continue;