From 664484306cc3d76e57cedeaa3bb00968549fdeb6 Mon Sep 17 00:00:00 2001 From: NotTacos <128665709+NotTacos2@users.noreply.github.com> Date: Fri, 6 Feb 2026 22:39:12 -0700 Subject: [PATCH] [glass] Change match times for rebuilt (#8575) The timer has changed for rebuilt's auto and teleop. --- glass/src/lib/native/cpp/other/FMS.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glass/src/lib/native/cpp/other/FMS.cpp b/glass/src/lib/native/cpp/other/FMS.cpp index 22de23304b..55e56424f2 100644 --- a/glass/src/lib/native/cpp/other/FMS.cpp +++ b/glass/src/lib/native/cpp/other/FMS.cpp @@ -71,11 +71,11 @@ void glass::DisplayFMS(FMSModel* model, bool editableDsAttached) { } ImGui::SameLine(); if (ImGui::Button("Auto") && !enabled) { - model->SetMatchTime(15.0); + model->SetMatchTime(20.0); } ImGui::SameLine(); if (ImGui::Button("Teleop") && !enabled) { - model->SetMatchTime(135.0); + model->SetMatchTime(140.0); } }