Implement TowerEvent

This commit is contained in:
Kei-Luna
2026-05-24 08:02:59 +09:00
parent bc399f6afe
commit e4398e17b4
5 changed files with 149 additions and 0 deletions

View File

@@ -65,6 +65,13 @@ public class Chapter_DealLevelSettlement : ICallGSHandler
return response;
}
if (string.Equals(sCmd, "TowerEventChapter_LevelSettlement", StringComparison.Ordinal))
{
var (response, sync) = TowerEventChapter_LevelSettlement.HandleSettlement(connection.Player!, tbParam);
extraSync = sync;
return response;
}
return tbParam?.DeepClone() ?? new JsonObject();
}