From 9c90d449c12b33b28307adb41ae2c5ef718386d5 Mon Sep 17 00:00:00 2001 From: TudbuT Date: Mon, 27 May 2024 12:48:55 +0200 Subject: [PATCH] make autototem not render when not supposed to render --- .../main/java/com/baseband/client/module/combat/AutoTotem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client/src/main/java/com/baseband/client/module/combat/AutoTotem.java b/Client/src/main/java/com/baseband/client/module/combat/AutoTotem.java index d30b74c..479543a 100644 --- a/Client/src/main/java/com/baseband/client/module/combat/AutoTotem.java +++ b/Client/src/main/java/com/baseband/client/module/combat/AutoTotem.java @@ -368,7 +368,7 @@ public class AutoTotem extends Feature { int fullCount = 0; public void renderTotems() { - if(fullCount != 0) { + if(fullCount != 0 && renderTots) { ScaledResolution res = new ScaledResolution(mc); int y = res.getScaledHeight() - 16 * 2 - 3 - 8; int x;