Skip to content

Commit

Permalink
team colors from 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gerdoe-jr committed Jan 8, 2025
1 parent 1647784 commit 2eec7d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions game/vanilla/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1583,12 +1583,12 @@ pub mod state {
skin_info: match character_game_info.and_then(|side| side) {
Some(side) => match side {
MatchSide::Red => NetworkSkinInfo::Custom {
body_color: ubvec4::new(255, 0, 0, 255),
feet_color: ubvec4::new(255, 0, 0, 255),
body_color: ubvec4::new(255, 107, 107, 255),
feet_color: ubvec4::new(255, 107, 107, 255),
},
MatchSide::Blue => NetworkSkinInfo::Custom {
body_color: ubvec4::new(0, 0, 255, 255),
feet_color: ubvec4::new(0, 0, 255, 255),
body_color: ubvec4::new(107, 159, 255, 255),
feet_color: ubvec4::new(107, 159, 255, 255),
},
},
None => {
Expand Down

0 comments on commit 2eec7d1

Please sign in to comment.