[GI/Fix] Added propper altName for WorktopOptionNotify.optionIdList and fixed type of LevelTagDataNotify.levelTagIdList

This commit is contained in:
hartie95 2024-08-15 12:59:03 +02:00
parent 0eed2878f8
commit 9b6e50cd04
2 changed files with 5 additions and 2 deletions

View File

@ -3,6 +3,7 @@ package org.anime_game_servers.multi_proto.gi.data.gadget
import org.anime_game_servers.core.base.annotations.AddedIn
import org.anime_game_servers.core.base.annotations.RemovedIn
import org.anime_game_servers.core.base.Version
import org.anime_game_servers.core.base.annotations.proto.AltName
import org.anime_game_servers.core.base.annotations.proto.CommandType
import org.anime_game_servers.core.base.annotations.proto.ProtoCommand
@ -13,5 +14,7 @@ internal interface WorktopOptionNotify {
@RemovedIn(Version.GI_CB2)
var optionId: Int
@AddedIn(Version.GI_CB2)
@AltName("optionList")
var optionIdList: List<Int>
}
}

View File

@ -9,5 +9,5 @@ import org.anime_game_servers.core.base.annotations.proto.ProtoCommand
@AddedIn(GI_2_4_0)
@ProtoCommand(CommandType.NOTIFY)
internal interface LevelTagDataNotify {
var levelTagIdList : List<String>
var levelTagIdList : List<Int>
}