From 2eec7d13f71ff34def67c774bc73ac8db110bc5d Mon Sep 17 00:00:00 2001 From: Vlad Date: Wed, 8 Jan 2025 04:12:22 +0300 Subject: [PATCH] team colors from 0.6 --- game/vanilla/src/state.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/game/vanilla/src/state.rs b/game/vanilla/src/state.rs index 639318c..4ab834e 100644 --- a/game/vanilla/src/state.rs +++ b/game/vanilla/src/state.rs @@ -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 => {