Skip to content

Commit

Permalink
Fix steam not being detected for some users
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakatrazz committed Nov 27, 2024
1 parent aa8388d commit 72fb1d8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions Assets/Scripts/LiteNetLib/LiteNetLib.csproj.meta

This file was deleted.

2 changes: 1 addition & 1 deletion Assets/Scripts/Steamworks/SteamHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public static bool CheckSteamRunning()
{
var name = process.ProcessName;

if (name == "steam" || name == "steam_osx")
if (name.Contains("steam"))
{
running = true;
break;
Expand Down

0 comments on commit 72fb1d8

Please sign in to comment.