mirror of
https://github.com/Walter-Sparrow/lunar-tear.git
synced 2026-07-02 05:43:41 +03:00
Implement world-map entities
Build and Push Docker images to Docker Hub / build-and-push (push) Has been cancelled
Build and Push Docker images to Docker Hub / build-and-push (push) Has been cancelled
This commit is contained in:
@@ -287,10 +287,12 @@ func ChangedTables(before, after *store.UserState) []string {
|
||||
}
|
||||
|
||||
if !gimmickStateEqual(before.Gimmick, after.Gimmick) {
|
||||
if !mapsEqualStruct(before.Gimmick.Progress, after.Gimmick.Progress) {
|
||||
if !mapsEqualStruct(before.Gimmick.Progress, after.Gimmick.Progress) ||
|
||||
!mapsEqualStruct(before.Gimmick.Sequences, after.Gimmick.Sequences) {
|
||||
add("IUserGimmick")
|
||||
}
|
||||
if !mapsEqualStruct(before.Gimmick.OrnamentProgress, after.Gimmick.OrnamentProgress) {
|
||||
if !mapsEqualStruct(before.Gimmick.OrnamentProgress, after.Gimmick.OrnamentProgress) ||
|
||||
!mapsEqualStruct(before.Gimmick.Sequences, after.Gimmick.Sequences) {
|
||||
add("IUserGimmickOrnamentProgress")
|
||||
}
|
||||
if !mapsEqualStruct(before.Gimmick.Sequences, after.Gimmick.Sequences) {
|
||||
|
||||
Reference in New Issue
Block a user