1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2026-01-04 15:31:36 +00:00

Feature: Resource Pack API additions - ResourcePackOptions and a GeyserDefineResourcePacksEvent (#4978)

This commit is contained in:
chris
2025-03-25 15:49:18 +01:00
committed by GitHub
parent 512c68a883
commit 69329f2cad
45 changed files with 2213 additions and 138 deletions

View File

@@ -75,6 +75,13 @@ public class GeyserViaProxyLogger implements GeyserLogger, GeyserCommandSource {
}
}
@Override
public void debug(String message, Object... arguments) {
if (this.debug) {
this.debug(String.format(message, arguments));
}
}
@Override
public void setDebug(boolean debug) {
this.debug = debug;