Skip to content

Instantly share code, notes, and snippets.

@kyriog
Created March 1, 2015 00:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyriog/c5f8fadeed1eb439b7cc to your computer and use it in GitHub Desktop.
Save kyriog/c5f8fadeed1eb439b7cc to your computer and use it in GitHub Desktop.
Craftbukkit 1.8 food regen bug
package fr.kyriog.spigot18bug;
import org.bukkit.Bukkit;
import org.bukkit.Difficulty;
import org.bukkit.plugin.java.JavaPlugin;
public class Plugin extends JavaPlugin {
@Override
public void onEnable() {
Bukkit.getWorlds().get(0).setDifficulty(Difficulty.PEACEFUL);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment