Created
January 31, 2015 01:33
-
-
Save sirsavary/12ec02d15fb4b2d01ac1 to your computer and use it in GitHub Desktop.
Am I doing it right?
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
| @Override | |
| public MinecraftVersion getMinecraftVersion() { | |
| return new MinecraftVersion() { | |
| @Override | |
| public String getName() { | |
| return "@MC_VERSION@"; | |
| } | |
| @Override | |
| public boolean isLegacy() { | |
| return false; | |
| } | |
| @Override | |
| public int compareTo(MinecraftVersion minecraftVersion) { | |
| return 0; | |
| } | |
| }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment