Set rare drops to logging level 1.
This commit is contained in:
parent
466a8ee8ef
commit
725f7f1a12
Binary file not shown.
@ -222,9 +222,9 @@ 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();
|
||||||
TwosideKeeper.log(ChatColor.DARK_GREEN+" Randomness is "+randomness, 3);
|
TwosideKeeper.log(ChatColor.DARK_GREEN+" Randomness is "+randomness, 1);
|
||||||
if (randomness<=0.2) {
|
if (randomness<=0.2) {
|
||||||
TwosideKeeper.log(ChatColor.DARK_GREEN+" Spawn an essence!", 3);
|
TwosideKeeper.log(ChatColor.DARK_GREEN+" Spawn an essence!", 1);
|
||||||
switch (this) {
|
switch (this) {
|
||||||
case DANGEROUS:
|
case DANGEROUS:
|
||||||
droplist.add(sig.plugin.TwosideKeeper.Artifact.createArtifactItem(ArtifactItem.ANCIENT_ESSENCE));
|
droplist.add(sig.plugin.TwosideKeeper.Artifact.createArtifactItem(ArtifactItem.ANCIENT_ESSENCE));
|
||||||
@ -239,7 +239,7 @@ public enum MonsterDifficulty {
|
|||||||
droplist.add(sig.plugin.TwosideKeeper.Artifact.createArtifactItem(ArtifactItem.ARTIFACT_ESSENCE));
|
droplist.add(sig.plugin.TwosideKeeper.Artifact.createArtifactItem(ArtifactItem.ARTIFACT_ESSENCE));
|
||||||
break;
|
break;
|
||||||
default: {
|
default: {
|
||||||
TwosideKeeper.log("Invalid Monster Type!", 2);
|
TwosideKeeper.log("Invalid Monster Type!", 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -270,7 +270,7 @@ public enum MonsterDifficulty {
|
|||||||
droplist.add(sig.plugin.TwosideKeeper.Artifact.createArtifactItem(ArtifactItem.ARTIFACT_CORE));
|
droplist.add(sig.plugin.TwosideKeeper.Artifact.createArtifactItem(ArtifactItem.ARTIFACT_CORE));
|
||||||
break;
|
break;
|
||||||
default: {
|
default: {
|
||||||
TwosideKeeper.log("Invalid Monster Type!", 2);
|
TwosideKeeper.log("Invalid Monster Type!", 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user