Kadala item cost fix

This commit is contained in:
Nu77P0inter 2024-05-16 16:31:18 -04:00
parent 72ee5542a7
commit ba8beae44c

View File

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