Fix improperly set favorite_card_evolve

This commit is contained in:
Ethan O'Brien
2024-04-29 20:48:17 -05:00
parent 05ed74f3c6
commit 51a82a5161
2 changed files with 2 additions and 1 deletions

View File

@@ -330,7 +330,7 @@ pub fn give_exp(amount: i32, user: &mut JsonValue) {
}
}
fn get_card(id: i64, user: &JsonValue) -> JsonValue {
pub fn get_card(id: i64, user: &JsonValue) -> JsonValue {
if id == 0 {
return object!{};
}