Fixed spelling error for discoColours

This commit is contained in:
RangerMauve 2014-07-31 20:18:41 -04:00
parent 31833b974a
commit 7ff0c81c06

View File

@ -338,7 +338,7 @@ public class DiscoParty {
}
void randomizeFloor(Block block, int index) {
int to_color = (index + state) % disocColors.length;
int to_color = (index + state) % disocColours.length;
block.setType(Material.WOOL);
block.setData(discoColours[to_color].getData());
}