fix: swapped del_relic_list & del_equipment_list and increase inv limit

This commit is contained in:
amizing25
2026-01-08 06:57:27 +07:00
parent 0208899832
commit 5e5a90cb50
4 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -124,8 +124,8 @@ impl PlayerSession {
// clear relics & lightcones
self.send(PlayerSyncScNotify {
del_equipment_list: (2000..=3500).collect(),
del_relic_list: (1..=2000).collect(),
del_relic_list: (1..=3000).collect(),
del_equipment_list: (3001..=3500).collect(),
..Default::default()
})
.await