Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public boolean saveToActivityFile(){
  2.         File activityFile = new File(plugin.getDataFolder(), "MActivity.yml");
  3.         if (activityFile.exists()) {
  4.             mConfig = new Configuration(activityFile);
  5.             mConfig.load();
  6.            
  7.         }
  8.         else {
  9.             return false;
  10.         }
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement