Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. December 6, 2017
  2. [10:48 AM] Knightz: Beginning work on parkour plugin.
  3. [12:05 PM] Knightz: Experiencing lots of computer issues, going to reset my computer. Won't be able to work for today and possibly tonight.(edited)
  4. [12:05 PM] Knightz: Don't worry, I haven't logged any of these hours :wink:
  5. December 7, 2017
  6. [2:03 PM] Knightz: 1 hour (once again, forgot to pause at times) spent starting on Parcore, as I am calling it :wink:
  7.  
  8. [2:03 PM] Knightz: Region class created, along with various command setup.
  9. December 9, 2017
  10. [3:50 AM] Knightz: Approximately 1.5 hours done yesterday in Parcore. No timer proof as I restarted my computer half way through.
  11. [4:59 AM] Knightz: 1 hour spent on various map creation commands. Pausing work for now..
  12. [5:02 AM] Knightz: Noticed that in commands with a lot of arguments, the previous argument will not be ignored. Will bugfix when I get home.
  13. [9:51 AM] Knightz: Updated godcomplex-core to fix that bug. Also added Commands on the wiki.
  14. [1:25 PM] Knightz: Ugh. That bug was more than I expected. Fixed now.
  15. [1:28 PM] Knightz: Okay that's strange
  16. [1:29 PM] Knightz: For some reason I have no idea, configuration sections are being created before they are even created.
  17. public Map(Parcore parcore, Region region, String name) {
  18. this.parcore = parcore;
  19. this.region = region;
  20. this.name = name;
  21. ModuleFile maps = parcore.getMaps();
  22. //Already exists for some reason.
  23. if (maps.getConfigurationSection(name) != null) {
  24. System.out.println(maps.getConfigurationSection(name).getKeys(true));
  25. throw new MapAlreadyExistsException("Map " + name + " already present in maps.yml! Delete it and try again");
  26. }
  27. maps.createSection(name, serialize());
  28. maps.save();
  29. }
  30. [1:30 PM] Knightz: The constructor is only gettign called once and everything.
  31. [1:30 PM] Knightz: That's seriously odd.
  32. [1:33 PM] Knightz: Going to just override in the meantime
  33. [3:45 PM] Knightz: Alright, finishing off for today. 4 hours done as a bit was multitasking. Parkour map creation finished and various bugfixes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement