1.1-RELEASECANDIDATE-2

Scoreboard bug fixed
inspect message disable fixed
/f seechunk particle options disabled, because they were breaking if invalid.
This commit is contained in:
Naman
2018-04-13 22:23:04 -05:00
parent 175a4a6a12
commit 6c2ca2a468
2 changed files with 4 additions and 10 deletions

View File

@@ -48,7 +48,9 @@ public class CmdSeeChunk extends FCommand {
this.useParticles = p.getConfig().getBoolean("see-chunk.particles", true);
interval = P.p.getConfig().getLong("see-chunk.interval", 10L);
effect = ParticleEffect.fromName(P.p.getConfig().getString("see-chunk.particle", "REDSTONE"));
if (effect == null){
effect = ParticleEffect.REDSTONE;
}
}