|
|
@ -441,7 +441,6 @@ async fn test_exp_steal_android_boost_in_ultimate() { |
|
|
|
|
|
|
|
let c1 = ship.clients.get(&ClientId(1)).unwrap();
|
|
|
|
let c2 = ship.clients.get(&ClientId(2)).unwrap();
|
|
|
|
println!("c1 exp: {:?}, c2 exp: {:?}", c1.character.exp, c2.character.exp);
|
|
|
|
assert!(c1.character.exp == 80000080);
|
|
|
|
assert!(c2.character.exp == 80000032);
|
|
|
|
}
|
|
|
@ -556,7 +555,6 @@ async fn test_exp_steal_no_android_boost_in_vhard() { |
|
|
|
|
|
|
|
let c1 = ship.clients.get(&ClientId(1)).unwrap();
|
|
|
|
let c2 = ship.clients.get(&ClientId(2)).unwrap();
|
|
|
|
println!("c1 exp: {:?}, c2 exp: {:?}", c1.character.exp, c2.character.exp);
|
|
|
|
assert!(c1.character.exp == 80000010);
|
|
|
|
assert!(c2.character.exp == 80000010);
|
|
|
|
}
|
|
|
@ -909,7 +907,6 @@ async fn test_each_client_can_steal_full_exp_from_same_enemy() { |
|
|
|
|
|
|
|
let c1 = ship.clients.get(&ClientId(1)).unwrap();
|
|
|
|
let c2 = ship.clients.get(&ClientId(2)).unwrap();
|
|
|
|
println!("c1 exp: {:?}, c2 exp: {:?}", c1.character.exp, c2.character.exp);
|
|
|
|
assert!(c1.character.exp == 5);
|
|
|
|
assert!(c2.character.exp == 5);
|
|
|
|
|
|
|
|