From d02a6fac90d7a7686a27ddcd60e88488b097bb90 Mon Sep 17 00:00:00 2001 From: hut Date: Wed, 1 May 2024 18:50:46 +0200 Subject: [PATCH] enable HUD and third person mode by default --- src/var.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/var.rs b/src/var.rs index 6fb9898..f548337 100644 --- a/src/var.rs +++ b/src/var.rs @@ -164,10 +164,10 @@ impl Default for Settings { hud_color_choices: Color::hex("#727272").unwrap(), hud_color_speedometer: Color::hex("#BE1251").unwrap(), chat_speed: DEFAULT_CHAT_SPEED * if dev_mode { 2.5 } else { 1.0 }, - hud_active: false, + hud_active: true, map_active: false, is_zooming: false, - third_person: false, + third_person: true, rotation_stabilizer_active: true, shadows_sun: true, shadows_pointlights: false,