Compass..

This commit is contained in:
sigonasr2 2016-08-07 22:01:35 -05:00
parent 6f018ff69d
commit 7a0a75a519
2 changed files with 22 additions and 24 deletions

Binary file not shown.

View File

@ -323,7 +323,6 @@ public enum MonsterDifficulty {
TwosideKeeper.log("Adding "+gen_loot.toString()+" to loot table.", 4); TwosideKeeper.log("Adding "+gen_loot.toString()+" to loot table.", 4);
droplist.add(gen_loot); droplist.add(gen_loot);
double randomness = Math.random(); double randomness = Math.random();
if (isBoss) {
if (this==MonsterDifficulty.HELLFIRE || this==MonsterDifficulty.ELITE) { if (this==MonsterDifficulty.HELLFIRE || this==MonsterDifficulty.ELITE) {
if (randomness<=0.5) { if (randomness<=0.5) {
ItemStack hunters_compass = new ItemStack(Material.COMPASS); ItemStack hunters_compass = new ItemStack(Material.COMPASS);
@ -348,7 +347,6 @@ public enum MonsterDifficulty {
droplist.add(hunters_compass); droplist.add(hunters_compass);
} }
} }
}
randomness = Math.random(); randomness = Math.random();
TwosideKeeper.log(ChatColor.DARK_GREEN+" Randomness is "+randomness, 4); TwosideKeeper.log(ChatColor.DARK_GREEN+" Randomness is "+randomness, 4);
if (randomness<=0.2) { if (randomness<=0.2) {