aboutsummaryrefslogtreecommitdiff
path: root/src/client/java
diff options
context:
space:
mode:
authoranhgelus <anhgelus.morhtuuzh@proton.me>2024-08-23 13:49:13 +0000
committeranhgelus <anhgelus.morhtuuzh@proton.me>2024-08-23 13:49:13 +0000
commita39de9ad78f0e3b4b03453dc3f5da0b649f69288 (patch)
tree00c322f63fb624d354c184289eaef99c6f350c56 /src/client/java
parent909f9ed08454a26e3c42d2cfcf9338cded41c8fb (diff)
feat(config): config for nametag, skins and tab
Diffstat (limited to 'src/client/java')
-rw-r--r--src/client/java/world/anhgelus/molehunt/client/MolehuntClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/java/world/anhgelus/molehunt/client/MolehuntClient.java b/src/client/java/world/anhgelus/molehunt/client/MolehuntClient.java
index 5f6b735..7770a1b 100644
--- a/src/client/java/world/anhgelus/molehunt/client/MolehuntClient.java
+++ b/src/client/java/world/anhgelus/molehunt/client/MolehuntClient.java
@@ -16,8 +16,8 @@ public class MolehuntClient implements ClientModInitializer {
try (final var client = context.client()) {
client.execute(() -> {
SHOW_SKINS = payload.showSkins();
- SHOW_NAMETAGS = payload.showNametag();
- SHOW_TAB = payload.showNametag();
+ SHOW_NAMETAGS = payload.showNametags();
+ SHOW_TAB = payload.showTab();
});
}
});