Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.File;
- import org.bukkit.plugin.java.JavaPlugin;
- public class Main extends JavaPlugin{
- @Override
- public void onLoad() {
- FilesUtils.deleteFile(new File("world", "uid.dat"));
- }
- //base -> world
- @Override
- public void onDisable() {
- FilesUtils.deleteFile(new File("world"));
- FilesUtils.copyFile(new File("base"), new File("world"));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment