It allows you to automatically delete the "/playerdata" directory when your server is stopping. Easy but powerful!
- Tested Minecraft Versions:
- 1.7
- 1.8
- 1.9
- 1.10
- 1.11
- 1.12
If you have a lobby or a login server and you don't want to store useless data you can use my plugin and this settings in "spigot.yml"
If you don't need my plugin don't download it. In my case it helped me to fix a bug that generated slowdowns during login.Code (Text):stats:
disable-saving: true
forced-stats:
achievement:
openInventory: 1
Thanks for reading!
Source code:
Code (Text):package Deletino;
import java.io.File;
import org.bukkit.Bukkit;
import org.bukkit.plugin.java.JavaPlugin;
public class Main extends JavaPlugin{
public void onDisable()
{
final File index = new File(Bukkit.getWorlds().get(0).getWorldFolder()+"/playerdata");
for(String s: index.list())
new File(index.getPath(),s).delete();
index.delete();
}
}

Deletino for Lobby - Automatically delete "/playerdata" and disable "/stats" directories 1.1
It allows you to delete automatically the /playerdata directory when your server is stopping