Switched back to Maven

This commit is contained in:
Charlie
2015-01-13 15:50:15 -05:00
parent 64cd8cd06c
commit 4e90ee5a65
60 changed files with 111 additions and 5206 deletions

View File

@@ -46,7 +46,7 @@ public class DiscoParty {
private static HashMap<String, Integer> defaultGuestNumbers = new HashMap<String, Integer>();
private static HashMap<String, Integer> maxGuestNumbers = new HashMap<String, Integer>();
private static final EnumSet<Material> floorExceptions = EnumSet.of(
Material.STAINED_GLASS,
//Material.STAINED_GLASS,
Material.FURNACE,
Material.CHEST,
Material.ENDER_CHEST,
@@ -328,8 +328,8 @@ public class DiscoParty {
if (doLightning) {
world.strikeLightningEffect(loc);
}
newSheep.setCustomName("jeb_");
newSheep.setCustomNameVisible(false);
//newSheep.setCustomName("jeb_");
//newSheep.setCustomNameVisible(false);
newSheep.setRemoveWhenFarAway(false);
}
@@ -352,7 +352,7 @@ public class DiscoParty {
&& block.getRelative(BlockFace.UP).getType() == Material.AIR
&& (block.getType().isSolid() || block.getType() == Material.AIR)) {
this.getFloorCache().add(block.getState());
block.setType(Material.STAINED_GLASS);
//block.setType(Material.STAINED_GLASS);
this.getFloorBlocks().add(block);
}
}