Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2022
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.35 KB | Source Code | 0 0
  1. package me.michelino31;
  2.  
  3. import org.bukkit.plugin.java.JavaPlugin;
  4.  
  5. public class Plugin extends JavaPlugin {
  6.     @Override
  7.     public void onEnable() {
  8.         System.out.println("gg");
  9.  
  10.         getConfig().options().copyDefaults(true);
  11.         saveConfig();
  12.  
  13.  
  14.     }
  15.     public void onDisable() {
  16.         System.out.println("no");
  17.     }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement