Allows God Mode Players Access to Jabba's Palace Regardless If They Completed The Required Quests Or Not

This commit is contained in:
Prisoncamp
2014-02-13 00:45:57 +00:00
parent e2310fc5b4
commit 2fde48ce01
@@ -7,7 +7,7 @@ trigger OnAboutToReceiveItem (obj_id destinationCell, obj_id transferrer, obj_id
return SCRIPT_CONTINUE;
}
if ((getIntObjVar(item, "theme_park_jabba")>11) || (getIntObjVar(item, "space_access_jabba")>11) || (groundquests.hasCompletedQuest (item, "quest/jabba_porcellus")))
if ((getIntObjVar(item, "theme_park_jabba")>11) || (getIntObjVar(item, "space_access_jabba")>11) || (groundquests.hasCompletedQuest (item, "quest/jabba_porcellus")) || isGod(item) )
{
return SCRIPT_CONTINUE;
}