Fix FightServer.kt and VelocityServer.kt @get:Optional annotations complaining about primitive types of field

This commit is contained in:
2026-07-17 16:40:38 +02:00
parent d84ca3547a
commit 95119fc93f
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -25,15 +25,15 @@ open class FightServer : DevServer() {
@get:Input
@get:Optional
var checkSchemID: Int = 0
var checkSchemID: Int? = 0
@get:Input
@get:Optional
var prepareSchemID: Int = 0
var prepareSchemID: Int? = 0
@get:Input
@get:Optional
var replay: Int = 0
var replay: Int? = 0
@get:Input
@get:Optional
@@ -42,7 +42,7 @@ open class FightServer : DevServer() {
// Property: fightID
@get:Input
@get:Optional
var eventKampfID: Int = 0
var eventKampfID: Int? = 0
@get:Input
@get:Optional