diff --git a/TwosideKeeper.jar b/TwosideKeeper.jar index e3557a8..ef2d992 100644 Binary files a/TwosideKeeper.jar and b/TwosideKeeper.jar differ diff --git a/src/plugin.yml b/src/plugin.yml index 4f7906a..51050d4 100644 --- a/src/plugin.yml +++ b/src/plugin.yml @@ -1,6 +1,6 @@ name: TwosideKeeper main: sig.plugin.TwosideKeeper.TwosideKeeper -version: 3.7.3cr8 +version: 3.7.3cr9 commands: money: description: Tells the player the amount of money they are holding. diff --git a/src/sig/plugin/TwosideKeeper/HelperStructures/MonsterDifficulty.java b/src/sig/plugin/TwosideKeeper/HelperStructures/MonsterDifficulty.java index b7f7308..791cda8 100644 --- a/src/sig/plugin/TwosideKeeper/HelperStructures/MonsterDifficulty.java +++ b/src/sig/plugin/TwosideKeeper/HelperStructures/MonsterDifficulty.java @@ -208,6 +208,7 @@ public enum MonsterDifficulty { //First do a common roll. if (Math.random()0) { + TwosideKeeper.log(">Attempting Common roll.", 1); //This is a common roll. ItemStack gen_loot = DistributeRandomLoot(this.loot_regular, isRanger); TwosideKeeper.log("Adding "+gen_loot.toString()+" to loot table.", 4); @@ -217,6 +218,7 @@ public enum MonsterDifficulty { //Rare Loot roll. if (Math.random()0) { + TwosideKeeper.log(">Attempting Rare roll.", 1); //This is a common roll. ItemStack gen_loot = DistributeRandomLoot(this.loot_rare, isRanger); TwosideKeeper.log("Adding "+gen_loot.toString()+" to loot table.", 4); @@ -248,6 +250,7 @@ public enum MonsterDifficulty { //Legendary Loot roll. if (Math.random()0) { + TwosideKeeper.log(">Attempting Legendary roll.", 1); //This is a common roll. ItemStack gen_loot = DistributeRandomLoot(this.loot_legendary, isRanger); TwosideKeeper.log("Adding "+gen_loot.toString()+" to loot table.", 4); @@ -277,7 +280,7 @@ public enum MonsterDifficulty { randomness = Math.random(); TwosideKeeper.log(ChatColor.DARK_GREEN+" Randomness is "+randomness, 1); if (randomness<=0.6) { - switch (this) { + switch (this) { case NORMAL: TwosideKeeper.log(ChatColor.DARK_GREEN+" Spawn a Mysterious Essence!", 1); droplist.add(sig.plugin.TwosideKeeper.Artifact.createArtifactItem(ArtifactItem.MYSTERIOUS_ESSENCE));