Make dev velocity easier to debug and fix version issue

This commit is contained in:
D4rkr34lm
2026-06-02 20:18:13 +02:00
parent a9fb982143
commit f3ce124a23
3 changed files with 16 additions and 2 deletions
+13
View File
@@ -278,6 +278,19 @@ class DevServer extends DefaultTask {
}
}
class VelocityServer extends DevServer {
@Input
@Optional
Boolean packetDecodeLogging = false
VelocityServer() {
super()
doFirst {
if(packetDecodeLogging) dParams.put("velocity.packet-decode-logging", "true")
}
}
}
class FightServer extends DevServer {
@Input