diff --git a/gi/src/commonMain/kotlin/org/anime_game_servers/multi_proto/gi/data/gadget/WorktopOptionNotify.kt b/gi/src/commonMain/kotlin/org/anime_game_servers/multi_proto/gi/data/gadget/WorktopOptionNotify.kt index 608d9d7..e3f0942 100644 --- a/gi/src/commonMain/kotlin/org/anime_game_servers/multi_proto/gi/data/gadget/WorktopOptionNotify.kt +++ b/gi/src/commonMain/kotlin/org/anime_game_servers/multi_proto/gi/data/gadget/WorktopOptionNotify.kt @@ -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 -} \ No newline at end of file +} + diff --git a/gi/src/commonMain/kotlin/org/anime_game_servers/multi_proto/gi/data/scene/LevelTagDataNotify.kt b/gi/src/commonMain/kotlin/org/anime_game_servers/multi_proto/gi/data/scene/LevelTagDataNotify.kt index c7d19af..fddcf49 100644 --- a/gi/src/commonMain/kotlin/org/anime_game_servers/multi_proto/gi/data/scene/LevelTagDataNotify.kt +++ b/gi/src/commonMain/kotlin/org/anime_game_servers/multi_proto/gi/data/scene/LevelTagDataNotify.kt @@ -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 + var levelTagIdList : List }