Skip to content

Commit

Permalink
Provide the godot application's name to the Tilt Five service
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan-Stevens committed Mar 28, 2024
1 parent 7226929 commit 21261dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example.csharp/addons/tiltfive/T5Interface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void ProcessGlasses()
if(entry.Value.CanAttemptToReserve && Manager.ShouldUseGlasses(entry.Key))
{
entry.Value.attemptingToReserve = true;
xrInterface.Call("reserve_glasses", entry.Key, Manager.GetUIDisplayName(entry.Key));
xrInterface.Call("reserve_glasses", entry.Key, ProjectSettings.GetSetting("application/config/name"));
}
}
}
Expand Down

0 comments on commit 21261dc

Please sign in to comment.