Skip to content

Commit

Permalink
Merge branch 'dev' into fix-roomspawnpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
SrLicht authored Sep 24, 2024
2 parents ca94209 + 816e979 commit 46e2cac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EXILED/EXILED.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<PropertyGroup>
<!-- This is the global version and is used for all projects that don't have a version -->
<Version Condition="$(Version) == ''">8.12.1</Version>
<Version Condition="$(Version) == ''">8.12.2</Version>
<!-- Enables public beta warning via the PUBLIC_BETA constant -->
<PublicBeta>false</PublicBeta>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,9 @@ private static IEnumerable<CodeInstruction> Transpiler(IEnumerable<CodeInstructi
ListPool<CodeInstruction>.Pool.Return(newInstructions);
}

private static bool CheckPermissions(BaseKeycardPickup keycard, DoorPermissions permissions)
private static bool CheckPermissions(BaseKeycardPickup keycard, DoorVariant door)
{
DoorPermissions permissions = door.RequiredPermissions;
if (permissions.RequiredPermissions == KeycardPermissions.None)
{
return true;
Expand Down

0 comments on commit 46e2cac

Please sign in to comment.