diff options
author | Technus <daniel112092@gmail.com> | 2020-04-17 06:51:13 +0200 |
---|---|---|
committer | Technus <daniel112092@gmail.com> | 2020-04-17 06:51:13 +0200 |
commit | 180b2f6745958d9b71110f07be00a0f819c4504c (patch) | |
tree | 03dc3dd34fb4611e21077dcaae907f77b30a3d26 /src/main/java/gregtech | |
parent | e41004e97876eecae1da518174698edcf1e5816f (diff) | |
download | GT5-Unofficial-180b2f6745958d9b71110f07be00a0f819c4504c.tar.gz GT5-Unofficial-180b2f6745958d9b71110f07be00a0f819c4504c.tar.bz2 GT5-Unofficial-180b2f6745958d9b71110f07be00a0f819c4504c.zip |
Remove old comment
Diffstat (limited to 'src/main/java/gregtech')
-rw-r--r-- | src/main/java/gregtech/api/threads/GT_Runnable_MachineBlockUpdate.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/main/java/gregtech/api/threads/GT_Runnable_MachineBlockUpdate.java b/src/main/java/gregtech/api/threads/GT_Runnable_MachineBlockUpdate.java index c3c7cab6af..727faf29e2 100644 --- a/src/main/java/gregtech/api/threads/GT_Runnable_MachineBlockUpdate.java +++ b/src/main/java/gregtech/api/threads/GT_Runnable_MachineBlockUpdate.java @@ -35,10 +35,7 @@ public class GT_Runnable_MachineBlockUpdate implements Runnable { this.y = aY; this.z = aZ; } - - /** - * If the thread is idle, sets new values and remove the idle flag, otherwise, queue the cooridinates. - */ + public static void setMachineUpdateValues(World aWorld, int aX, int aY, int aZ) { EXECUTOR_SERVICE.submit(new GT_Runnable_MachineBlockUpdate(aWorld, aX, aY, aZ)); } |