Wrong display value for chunk caching command

This commit is contained in:
Jozufozu 2021-08-02 14:22:21 -07:00
parent 180a480e40
commit d21f2c73ee

View File

@ -78,7 +78,7 @@ public enum BooleanConfig {
if (player == null || state == null) return; if (player == null || state == null) return;
if (state == BooleanDirective.DISPLAY) { if (state == BooleanDirective.DISPLAY) {
ITextComponent text = new StringTextComponent("Chunk caching is currently: ").append(boolToText(FlwConfig.get().client.debugNormals.get())); ITextComponent text = new StringTextComponent("Chunk caching is currently: ").append(boolToText(FlwConfig.get().client.chunkCaching.get()));
player.displayClientMessage(text, false); player.displayClientMessage(text, false);
return; return;
} }