From 2a536e38f4d07e9c86a37c0452c93bb085bf65aa Mon Sep 17 00:00:00 2001 From: ChronosX88 Date: Mon, 8 Jan 2024 01:11:15 +0300 Subject: [PATCH] Fix server owner id --- gamemodes/irresistible/config/server.pwn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gamemodes/irresistible/config/server.pwn b/gamemodes/irresistible/config/server.pwn index a720acc..ec24549 100644 --- a/gamemodes/irresistible/config/server.pwn +++ b/gamemodes/irresistible/config/server.pwn @@ -19,8 +19,8 @@ /* ** Server Operator ** */ #define SERVER_OPERATOR "ChronosXYZ" -#define SERVER_OPERATOR_ACC_ID 1 -#define SERVER_OPERATOR_ACC_ID_2 2 +#define SERVER_OPERATOR_ACC_ID 926053 +// #define SERVER_OPERATOR_ACC_ID_2 2 /* ** Comment line to disable feature ** */ //#define SERVER_RULES_URL "files.sfcnr.com/en_rules.txt" // used for /rules (cnr\features\server_rules.pwn) @@ -59,7 +59,7 @@ hook OnScriptInit( ) /* ** Functions ** */ stock IsPlayerLeadMaintainer( playerid ) // Limits money, coin, xp spawning to this user id { - if ( GetPlayerAccountID( playerid ) == SERVER_OPERATOR_ACC_ID || GetPlayerAccountID( playerid ) == SERVER_OPERATOR_ACC_ID_2 ) + if ( GetPlayerAccountID( playerid ) == SERVER_OPERATOR_ACC_ID) return 1; return 0;