From c5f6fc184d0727700a6d3bf1b4b856ff987d89af Mon Sep 17 00:00:00 2001 From: Prisoncamp Date: Thu, 13 Feb 2014 00:51:24 +0000 Subject: [PATCH] Allows God Mode Players Access to Jabba's Palace Regardless If They Completed The Required Quests Or Not --- .../game/script/theme_park/gating/jabba/throne_block.script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sku.0/sys.server/compiled/game/script/theme_park/gating/jabba/throne_block.script b/sku.0/sys.server/compiled/game/script/theme_park/gating/jabba/throne_block.script index 933fb98ee..084f0038d 100644 --- a/sku.0/sys.server/compiled/game/script/theme_park/gating/jabba/throne_block.script +++ b/sku.0/sys.server/compiled/game/script/theme_park/gating/jabba/throne_block.script @@ -11,7 +11,7 @@ trigger OnAboutToReceiveItem (obj_id destinationCell, obj_id transferrer, obj_id { return SCRIPT_CONTINUE; } - else if ( groundquests.hasCompletedQuest (item, "quest/jabba_barada") || groundquests.hasCompletedQuest (item, "quest/jabba_barada_v2") ) + else if ( groundquests.hasCompletedQuest (item, "quest/jabba_barada") || groundquests.hasCompletedQuest (item, "quest/jabba_barada_v2") || isGod(item) ) { return SCRIPT_CONTINUE; }