[RELEASE] Added support for 1.9.4 / 1.10.* - Rebuild, fixing dumb errors.

This commit is contained in:
0xSeb
2016-06-29 17:54:44 +02:00
parent 8a898b8bcd
commit c6a5387b70
3 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ Visit the official thread: www.minecraftforum.net/forums/mapping-and-modding/min
## Support ## Support
If you like my work, you are welcome to [donate](https://www.twitchalerts.com/donate/skate702germany)! Programming is even more fun with hot pizza or cold coffee. If you like my work, you are welcome to [donate](https://www.tipeeestream.com/skate702germany/donation)! Programming is even more fun with hot pizza or cold coffee.
Also, you can support the code directly with pull requests if you have a cool idea. Feedback is nice, too! Also, you can support the code directly with pull requests if you have a cool idea. Feedback is nice, too!
Mail-Address: dev@skate702.de Mail-Address: dev@skate702.de
@@ -41,7 +41,7 @@ import net.minecraftforge.common.MinecraftForge;
public class CraftingKeys { public class CraftingKeys {
public static final String MODID = "craftingkeys"; public static final String MODID = "craftingkeys";
public static final String VERSION = "1.0.1"; public static final String VERSION = "1.0.2";
public static final String NAME = "Crafting Keys"; public static final String NAME = "Crafting Keys";
/** /**
@@ -144,7 +144,6 @@ public class CraftingKeys {
@SubscribeEvent @SubscribeEvent
public void onTick(TickEvent.ClientTickEvent tick) { public void onTick(TickEvent.ClientTickEvent tick) {
// Get current Screen, then test
GuiScreen currentScreen = Util.client.currentScreen; GuiScreen currentScreen = Util.client.currentScreen;
if (currentScreen != null) { if (currentScreen != null) {
+4 -4
View File
@@ -3,10 +3,10 @@
"modid": "craftingkeys", "modid": "craftingkeys",
"name": "Crafting Keys", "name": "Crafting Keys",
"description": "Simple better crafting! Crafing Keys enables new inventory key-bindings to speed up your crafting.", "description": "Simple better crafting! Crafing Keys enables new inventory key-bindings to speed up your crafting.",
"version": "1.0.1", "version": "1.0.2",
"credits": "Based on the open-source InvTweaks-Mod. Thanks a lot!", "credits": "Based on the open-source InvTweaks-Mod. Thanks a lot!",
"mcversion": "1.7.10, 1.8, 1.8.9, 1.9", "mcversion": "1.7.10 - 1.10.*",
"url": "http://skate702.de", "url": "http://craftingkeys.skate702.de",
"authorList": [ "skate702", "sebinside" ] "authorList": [ "skate702 (sebinside)" ]
} }
] ]