Skip to content

Commit

Permalink
Fix bug, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Graicc committed May 23, 2022
1 parent d106ff9 commit a7a0ac0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GorillaKZ/Behaviours/GorillaKZManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public static bool IsValidRoom()
{
if (!PhotonNetwork.InRoom) return false;

if (PhotonNetwork.CurrentRoom.IsVisible)
if (!PhotonNetwork.CurrentRoom.IsVisible)
{
LeaderboardManager.instance.ShowMessage("Join a public room\nto start a run!", true);
return false;
Expand Down
2 changes: 1 addition & 1 deletion GorillaKZ/PluginInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ public static class PluginInfo
{
public const string GUID = "io.github.graicc.gorillatag.gorillakz";
public const string Name = "Gorilla KZ";
public const string Version = "0.1.0";
public const string Version = "0.2.0";
}
}

0 comments on commit a7a0ac0

Please sign in to comment.