forked from SteamWar/SteamWar
Fix FightServer.kt and VelocityServer.kt @get:Optional annotations complaining about primitive types of field
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user