diff options
author | GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> | 2023-04-02 03:02:42 +0100 |
---|---|---|
committer | GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> | 2023-04-02 03:02:42 +0100 |
commit | 2861a999fd24997ebeb6475d3367ced61e83f132 (patch) | |
tree | 37d02a36b9eb2734d86b05f98ba147bc7ff88cf7 | |
parent | 089978dc57c582da0f1e0c39929dee4c21f04266 (diff) | |
download | GT5-Unofficial-2861a999fd24997ebeb6475d3367ced61e83f132.tar.gz GT5-Unofficial-2861a999fd24997ebeb6475d3367ced61e83f132.tar.bz2 GT5-Unofficial-2861a999fd24997ebeb6475d3367ced61e83f132.zip |
Change default settings on renderer
-rw-r--r-- | src/main/java/com/github/technus/tectech/thing/block/TileEyeOfHarmony.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/java/com/github/technus/tectech/thing/block/TileEyeOfHarmony.java b/src/main/java/com/github/technus/tectech/thing/block/TileEyeOfHarmony.java index 655a531432..bb32afbd8b 100644 --- a/src/main/java/com/github/technus/tectech/thing/block/TileEyeOfHarmony.java +++ b/src/main/java/com/github/technus/tectech/thing/block/TileEyeOfHarmony.java @@ -29,8 +29,8 @@ public class TileEyeOfHarmony extends TileEntity { this.rotationSpeed = rotationSpeed; } - private float size = 1; - private float rotationSpeed = 0; + private float size = 10; + private float rotationSpeed = 10; // Fun fact, these methods were entirely written by ChatGPT3... Take that as you will. public static <T> ArrayList<T> selectNRandomElements(Collection<T> inputList, long n) { @@ -58,7 +58,7 @@ public class TileEyeOfHarmony extends TileEntity { this.tier = tier; } - private long tier = -1; + private long tier = 9; public void incrementSize() { size += 1.5f; @@ -180,4 +180,5 @@ public class TileEyeOfHarmony extends TileEntity { public void onDataPacket(NetworkManager net, S35PacketUpdateTileEntity pkt) { readFromNBT(pkt.func_148857_g()); } + } |