Added custom floor for Love chest

This commit is contained in:
LCastr0 2017-02-02 12:28:10 -02:00
parent d06c445e9c
commit 9024bb6569
1 changed files with 10 additions and 0 deletions

View File

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