This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "1.2f", | |
| "updatenews": "Added sounds to each guigame for Minecraft versions 1.9 and up, contact me if you want sounds below this version\nAdded some pseudo-random complements\n\nAnnotation Restructuring (Makes adding new GuiGames a bit less menial)\nBetter organized base guigame information\n\nCleaned up Snake banners' lores\nCleaned up help books' lores\n\nMineSweeper middle/right click = flag/question\nMineSweeper lets you see the board after you win/lose\nMineSweeper hard difficulty lowered once again, it is now possible to win (or so I'm told)\n\nMoved update detector from pastebin.com to gist.github.com\n\nSpell-checked resource page on Spigot and removed excessive colors\n\nBug Fixes:\n General:\n The book of plans wasn't closed after use and was therefore incompatible with the reload command\n Plus all the bugs that come with adding new features (I hope)\n Snake:\n Occasionally Snake wouldn't let you quit (amongst other weird behaviour) " | |
| "download": "http |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.storm28.guigame.Utils; | |
| import java.util.ArrayList; | |
| import java.util.Collections; | |
| import java.util.Comparator; | |
| import java.util.HashMap; | |
| import java.util.Iterator; | |
| import java.util.LinkedHashMap; | |
| import java.util.LinkedList; | |
| import java.util.List; |