mirror of
https://github.com/Anime-Game-Servers/anime-game-multi-proto.git
synced 2024-11-23 12:39:42 +00:00
[GI/Fix] Added propper altName for WorktopOptionNotify.optionIdList and fixed type of LevelTagDataNotify.levelTagIdList
This commit is contained in:
parent
0eed2878f8
commit
9b6e50cd04
@ -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>
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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>
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user