From 2861a999fd24997ebeb6475d3367ced61e83f132 Mon Sep 17 00:00:00 2001 From: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> Date: Sun, 2 Apr 2023 03:02:42 +0100 Subject: Change default settings on renderer --- .../com/github/technus/tectech/thing/block/TileEyeOfHarmony.java | 7 ++++--- 1 file 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 ArrayList selectNRandomElements(Collection 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()); } + } -- cgit