View Restriction - Handle thirdPersonView difficulty setting correctly (#9734)

This commit is contained in:
BrettMayson 2024-01-14 14:49:06 -06:00 committed by GitHub
parent a684e874fb
commit 686c252beb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ if !(hasInterface) exitWith {};
};
// Exit if third person view is not available
if (difficultyOption "thirdPersonView" == 0) exitWith {
if (difficultyOption "thirdPersonView" != 1) exitWith {
WARNING("View Restriction is enabled, but 3rd person is disabled with server difficulty.");
};