From 5f349274fb3cc6693252b74414f33bce786fbab5 Mon Sep 17 00:00:00 2001 From: AconiteGodOfSWG Date: Mon, 9 Nov 2020 03:00:28 -0500 Subject: [PATCH] Prevent GM from picking up holiday controller --- .../compiled/game/script/event/holiday_controller.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sku.0/sys.server/compiled/game/script/event/holiday_controller.java b/sku.0/sys.server/compiled/game/script/event/holiday_controller.java index 4361749d4..1b9575a4e 100755 --- a/sku.0/sys.server/compiled/game/script/event/holiday_controller.java +++ b/sku.0/sys.server/compiled/game/script/event/holiday_controller.java @@ -159,6 +159,13 @@ public class holiday_controller extends script.base_script } return SCRIPT_CONTINUE; } + + // Make sure CSRs can't take the master object on a stroll down Amidala's Beach when they should be home doing their homework + public int OnAboutToBeTransferred(obj_id self, obj_id destContainer, obj_id transferer) throws InterruptedException { + sendSystemMessageTestingOnly(transferer, "You cannot move this item!"); + return SCRIPT_OVERRIDE; + } + private void startHolidayEvent(obj_id speaker, String holidayName, String holidayRunning, int holidayStatus) throws InterruptedException { if (holidayRunning == null)