mirror of
https://git.ethanthesleepy.one/ethanaobrien/ew.git
synced 2025-05-13 11:37:33 -05:00
oops
This commit is contained in:
parent
378fd15278
commit
8dc898d7ba
1 changed files with 3 additions and 3 deletions
|
@ -412,7 +412,7 @@ fn get_master_id(id: i64) -> i64 {
|
||||||
masterid + id.char_indices().last().unwrap().1.to_string().parse::<i64>().unwrap()
|
masterid + id.char_indices().last().unwrap().1.to_string().parse::<i64>().unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
const MAX_BOND: i64 = 50000;
|
const MAX_BOND: i64 = 500000;
|
||||||
|
|
||||||
fn get_live_character_list(deck_id: i32, user: &JsonValue, missions: &mut JsonValue, completed_missions: &mut JsonValue) -> JsonValue {
|
fn get_live_character_list(deck_id: i32, user: &JsonValue, missions: &mut JsonValue, completed_missions: &mut JsonValue) -> JsonValue {
|
||||||
let mut rv = array![];
|
let mut rv = array![];
|
||||||
|
@ -451,8 +451,8 @@ fn get_live_character_list(deck_id: i32, user: &JsonValue, missions: &mut JsonVa
|
||||||
|
|
||||||
rv.push(object!{
|
rv.push(object!{
|
||||||
master_character_id: character,
|
master_character_id: character,
|
||||||
exp: start,
|
exp: bond,
|
||||||
before_exp: bond
|
before_exp: start
|
||||||
}).unwrap();
|
}).unwrap();
|
||||||
}
|
}
|
||||||
rv
|
rv
|
||||||
|
|
Loading…
Add table
Reference in a new issue