From b474efda97fee16d593e6bd729a3b47919f70eaa Mon Sep 17 00:00:00 2001 From: Mafeesh Date: Sun, 26 Oct 2025 18:38:18 +0200 Subject: [PATCH] [Fixed] Typo of roonName to roomName which fixes some issues in tutorial, like permissions on supply crate in room 2 not being set --- MMOCoreORB/bin/scripts/screenplays/tutorial/tutorial.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MMOCoreORB/bin/scripts/screenplays/tutorial/tutorial.lua b/MMOCoreORB/bin/scripts/screenplays/tutorial/tutorial.lua index 78baadfd128..93632c2bea7 100644 --- a/MMOCoreORB/bin/scripts/screenplays/tutorial/tutorial.lua +++ b/MMOCoreORB/bin/scripts/screenplays/tutorial/tutorial.lua @@ -2033,7 +2033,7 @@ end -- Checks if room is complete function TutorialScreenPlay:isRoomComplete(pPlayer, roomName) - if (pPlayer == nil or roonName == nil or roomName == "") then + if (pPlayer == nil or roomName == nil or roomName == "") then return false end @@ -2042,7 +2042,7 @@ end -- Checks if player is in a room function TutorialScreenPlay:isInRoom(pPlayer, roomName) - if (pPlayer == nil or roonName == nil or roomName == "") then + if (pPlayer == nil or roomName == nil or roomName == "") then return false end