Skip to content
This repository was archived by the owner on May 26, 2024. It is now read-only.

Commit 6531131

Browse files
committedMay 24, 2018
% Updated ISSUE_TEMPLATE.md.
$ Fixed issue where some unused code was calling client side code on servers. ^ Version bump to 1.7.0-20-hotfix.
1 parent 07279f6 commit 6531131

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

‎ISSUE_TEMPLATE.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,13 @@ If not using a modpack:
3636
* Mod List - Upload to Pastie/Pastebin/etc:
3737

3838
Also include:
39+
* Gregtech version:
40+
* IC2 version:
3941
* Java version:
4042
* Operating System:
4143

4244
### Misc Info
43-
Check all that apply
45+
Check all that apply ([ ] -> [x] - use a lowercase x)
4446
- [ ]    Using GT:NH/GT:New Horizons?
4547
- [ ]    Single Player?
4648
- [ ]    Multi Player?

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ targetCompatibility = JavaVersion.VERSION_1_8
5252

5353
//Jar Info
5454
archivesBaseName = "GT-PlusPlus"
55-
version = "1.7.0-prerelease-20"
55+
version = "1.7.0-prerelease-20-hotfix"
5656
minecraft.version = "1.7.10-10.13.4.1614-1.7.10"
5757

5858
minecraft {

‎src/Java/gtPlusPlus/core/item/wearable/WearableLoader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
public class WearableLoader {
66

77
public static void run() {
8-
execute();
8+
//execute();
99
}
1010

1111
private static void execute() {

‎src/Java/gtPlusPlus/core/item/wearable/armour/ArmourLoader.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package gtPlusPlus.core.item.wearable.armour;
22

3-
import cpw.mods.fml.client.registry.RenderingRegistry;
4-
53
import net.minecraft.item.Item;
64
import net.minecraft.item.ItemArmor.ArmorMaterial;
75

@@ -22,7 +20,7 @@ public static void run() {
2220
}
2321

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

0 commit comments

Comments
 (0)