Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MMOCoreORB/bin/scripts/screenplays/tutorial/tutorial.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down