From d9463c99d2b710a5169fa69e70f180b3520adfee Mon Sep 17 00:00:00 2001 From: Richard Hendricks Date: Tue, 19 Jun 2018 02:08:03 -0500 Subject: Attempt to fix for #3030. Checking in on branch and doing PR so it can be reverted easily. --- src/main/java/gregtech/api/enums/GT_Values.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/main/java/gregtech/api/enums') diff --git a/src/main/java/gregtech/api/enums/GT_Values.java b/src/main/java/gregtech/api/enums/GT_Values.java index 94d268fd58..3ba0dc407a 100644 --- a/src/main/java/gregtech/api/enums/GT_Values.java +++ b/src/main/java/gregtech/api/enums/GT_Values.java @@ -158,6 +158,10 @@ public class GT_Values { * Debug parameter for stones generation. */ public static boolean debugStones = false; + /** + * Number of ticks between sending sound packets to clients for electric machines. Default is 1.5 seconds. Trying to mitigate lag and FPS drops. + */ + public static int ticksBetweenSounds = 30; /** * If you have to give something a World Parameter but there is no World... (Dummy World) */ -- cgit