Fix global lottery price

This commit is contained in:
Ethan O'Brien 2024-06-22 13:05:36 -05:00 committed by GitHub
parent a2475806b2
commit 69ad127379
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -216,7 +216,7 @@ lazy_static! {
pub static ref PRICE: JsonValue = {
let mut cardz = object!{};
let items = json::parse(&include_file!("src/router/databases/json/lottery_price.json")).unwrap();
let items_global = json::parse(&include_file!("src/router/databases/json/global/lottery.json")).unwrap();
let items_global = json::parse(&include_file!("src/router/databases/json/global/lottery_price.json")).unwrap();
for data in items.members() {
if cardz[data["id"].to_string()].is_null() {
cardz[data["id"].to_string()] = object!{};