correct gift limit, set proper primogem limit

This commit is contained in:
Ethan O'Brien 2024-05-03 14:25:40 -05:00
parent 83f7bc5e07
commit 56d20a9752

View file

@ -123,10 +123,10 @@ pub fn error_resp() -> HttpResponse {
// true - limit reached
// false - all good
const GIFT_LIMIT: usize = 1000000;
const GIFT_LIMIT: usize = 100000;
const LIMIT_ITEMS: i64 = 200000000;
const LIMIT_COINS: i64 = 2000000000;
const LIMIT_PRIMOGEMS: i64 = 2000000000;
const LIMIT_PRIMOGEMS: i64 = 1000000;
pub fn give_shop(master_item_id: i64, count: i64, user: &mut JsonValue) -> bool {
let mut has = false;