Merge pull request #184 from Nu77P0inter/test-stable

Kadala item cost fix
This commit is contained in:
Enthusiast 2025-09-27 23:01:09 -03:00 committed by GitHub
commit 266f5a65a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -61,7 +61,7 @@ namespace DiIiS_NA.GameServer.GSSystem.ActorSystem.Implementations
return;
}
int cost = item.ItemDefinition.Cost;
int cost = item.ItemDefinition.CostAlt;
//Check shards here
if (currentShards < cost)
return;