All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minestom.server.world.Difficulty Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server.world;

/**
 * Those are all the difficulties which can be displayed in the player menu.
 * 

* Sets with {@link net.minestom.server.MinecraftServer#setDifficulty(Difficulty)}. */ public enum Difficulty { PEACEFUL((byte) 0), EASY((byte) 1), NORMAL((byte) 2), HARD((byte) 3); private final byte id; Difficulty(byte id) { this.id = id; } public byte getId() { return id; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy