Skip to content

Commit

Permalink
% Updated ISSUE_TEMPLATE.md.
Browse files Browse the repository at this point in the history
$ Fixed issue where some unused code was calling client side code on servers.
^ Version bump to 1.7.0-20-hotfix.
  • Loading branch information
draknyte1 committed May 24, 2018
1 parent 07279f6 commit 6531131
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 3 additions & 1 deletion ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@ If not using a modpack:
* Mod List - Upload to Pastie/Pastebin/etc:

Also include:
* Gregtech version:
* IC2 version:
* Java version:
* Operating System:

### Misc Info
Check all that apply
Check all that apply ([ ] -> [x] - use a lowercase x)
- [ ]    Using GT:NH/GT:New Horizons?
- [ ]    Single Player?
- [ ]    Multi Player?
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ targetCompatibility = JavaVersion.VERSION_1_8

//Jar Info
archivesBaseName = "GT-PlusPlus"
version = "1.7.0-prerelease-20"
version = "1.7.0-prerelease-20-hotfix"
minecraft.version = "1.7.10-10.13.4.1614-1.7.10"

minecraft {
Expand Down
2 changes: 1 addition & 1 deletion src/Java/gtPlusPlus/core/item/wearable/WearableLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
public class WearableLoader {

public static void run() {
execute();
//execute();
}

private static void execute() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package gtPlusPlus.core.item.wearable.armour;

import cpw.mods.fml.client.registry.RenderingRegistry;

import net.minecraft.item.Item;
import net.minecraft.item.ItemArmor.ArmorMaterial;

Expand All @@ -22,7 +20,7 @@ public static void run() {
}

private static void glassArmour() {
RenderingRegistry.addNewArmourRendererPrefix("ClearGlassArmor");
//RenderingRegistry.addNewArmourRendererPrefix("ClearGlassArmor"); This needs to be client side only TODO
//ClearGlassHelmet = new ClearGlassArmor(2055, ClearGlassArmor, 5, 0).setUnlocalizedName("amethyst_helmet");
}

Expand Down

0 comments on commit 6531131

Please sign in to comment.