mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2025-03-25 07:46:11 +00:00
More fixes
This commit is contained in:
parent
99b0d88f44
commit
f142dfad04
2 changed files with 2 additions and 3 deletions
|
@ -9298,7 +9298,7 @@ fn character_pairs() -> [(i32, Character); 97] {
|
|||
|
||||
fn get_parent_character(fighter: Character) -> Character {
|
||||
use Character::*;
|
||||
return match fighter {
|
||||
match fighter {
|
||||
Chrom => Roy,
|
||||
Daisy => Peach,
|
||||
Ken => Ryu,
|
||||
|
@ -9308,7 +9308,7 @@ fn get_parent_character(fighter: Character) -> Character {
|
|||
Samusd => Samus,
|
||||
Wolf => Fox, //Pseudo-echo
|
||||
_ => fighter,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
pub fn kind_to_char(kind: i32) -> Character {
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
#![feature(const_mut_refs)]
|
||||
#![feature(exclusive_range_pattern)]
|
||||
#![feature(c_variadic)]
|
||||
#![feature(pointer_byte_offsets)]
|
||||
#![allow(
|
||||
clippy::borrow_interior_mutable_const,
|
||||
clippy::declare_interior_mutable_const,
|
||||
|
|
Loading…
Add table
Reference in a new issue