Update dependencies

This commit is contained in:
Ethan O'Brien
2025-05-01 12:14:17 -05:00
parent e27a020cfb
commit 1a736155e3
8 changed files with 598 additions and 376 deletions

View File

@@ -244,7 +244,7 @@ fn random_number(lowest: usize, highest: usize) -> usize {
}
assert!(lowest < highest);
rand::thread_rng().gen_range(lowest..highest + 1)
rand::rng().random_range(lowest..highest + 1)
}
pub fn gift_item_basic(id: i32, value: i64, ty_pe: i32, reason: &str, user: &mut JsonValue) -> JsonValue {