change: DebugOverlayDrawer.cs no longer needs a string and will accept an object

This commit is contained in:
Chris
2025-09-04 12:35:32 -04:00
parent 81bc5da2c0
commit 3499e33953
2 changed files with 7 additions and 7 deletions

View File

@@ -138,7 +138,7 @@ namespace Reset.Core.Tools{
}
// Publicly accessible method to change the value
public static void ChangeValue(string pageName, string sourceName, string newValue){
public static void ChangeValue(string pageName, string sourceName, object newValue){
try {
if (Instance.values.ContainsKey($"{pageName}/{sourceName}")) {
Instance.values[$"{pageName}/{sourceName}"].text = newValue.ToString();