diff --git a/sku.0/sys.server/compiled/game/script/conversation/restuss_imperial_space_mining.java b/sku.0/sys.server/compiled/game/script/conversation/restuss_imperial_space_mining.java old mode 100644 new mode 100755 index 1f328ea92..179a45cf1 --- a/sku.0/sys.server/compiled/game/script/conversation/restuss_imperial_space_mining.java +++ b/sku.0/sys.server/compiled/game/script/conversation/restuss_imperial_space_mining.java @@ -139,7 +139,7 @@ public class restuss_imperial_space_mining extends script.base_script public void restuss_imperial_space_mining_action_giveSpaceMine1(obj_id player, obj_id npc) throws InterruptedException { obj_id mobj = space_quest._getQuest(player, "space_mining_destroy", "restuss_imperial_mining_1"); - space_quest.setSilentQuestAborted(player, mobj); + if (mobj != null) space_quest.setSilentQuestAborted(player, mobj); groundquests.clearQuest(player, "restuss_imperial_space_mining_1"); groundquests.grantQuest(player, "restuss_imperial_space_mining_1"); } @@ -202,7 +202,7 @@ public class restuss_imperial_space_mining extends script.base_script public void restuss_imperial_space_mining_action_giveSpaceMine2(obj_id player, obj_id npc) throws InterruptedException { obj_id mobj = space_quest._getQuest(player, "space_mining_destroy", "restuss_imperial_mining_2"); - space_quest.setSilentQuestAborted(player, mobj); + if (mobj != null) space_quest.setSilentQuestAborted(player, mobj); groundquests.clearQuest(player, "restuss_imperial_space_mining_2"); groundquests.grantQuest(player, "restuss_imperial_space_mining_2"); } diff --git a/sku.0/sys.server/compiled/game/script/conversation/restuss_rebel_space_destroy.java b/sku.0/sys.server/compiled/game/script/conversation/restuss_rebel_space_destroy.java old mode 100644 new mode 100755 index 926a3570b..14c557a9b --- a/sku.0/sys.server/compiled/game/script/conversation/restuss_rebel_space_destroy.java +++ b/sku.0/sys.server/compiled/game/script/conversation/restuss_rebel_space_destroy.java @@ -107,7 +107,7 @@ public class restuss_rebel_space_destroy extends script.base_script public void restuss_rebel_space_destroy_action_givekill1(obj_id player, obj_id npc) throws InterruptedException { obj_id mobj = space_quest._getQuest(player, "destroy", "restuss_rebel_destroy_1"); - space_quest.setSilentQuestAborted(player, mobj); + if (mobj != null) space_quest.setSilentQuestAborted(player, mobj); groundquests.clearQuest(player, "restuss_rebel_space_destroy_1"); groundquests.grantQuest(player, "restuss_rebel_space_destroy_1"); } @@ -137,7 +137,7 @@ public class restuss_rebel_space_destroy extends script.base_script public void restuss_rebel_space_destroy_action_givekill2(obj_id player, obj_id npc) throws InterruptedException { obj_id mobj = space_quest._getQuest(player, "destroy", "restuss_rebel_destroy_2"); - space_quest.setSilentQuestAborted(player, mobj); + if (mobj != null) space_quest.setSilentQuestAborted(player, mobj); groundquests.clearQuest(player, "restuss_rebel_space_destroy_2"); groundquests.grantQuest(player, "restuss_rebel_space_destroy_2"); } diff --git a/sku.0/sys.server/compiled/game/script/conversation/restuss_rebel_space_mining.java b/sku.0/sys.server/compiled/game/script/conversation/restuss_rebel_space_mining.java old mode 100644 new mode 100755 index 3f7c147f9..a1bf8907b --- a/sku.0/sys.server/compiled/game/script/conversation/restuss_rebel_space_mining.java +++ b/sku.0/sys.server/compiled/game/script/conversation/restuss_rebel_space_mining.java @@ -150,7 +150,7 @@ public class restuss_rebel_space_mining extends script.base_script public void restuss_rebel_space_mining_action_giveSpaceMine1(obj_id player, obj_id npc) throws InterruptedException { obj_id mobj = space_quest._getQuest(player, "space_mining_destroy", "restuss_rebel_mining_1"); - space_quest.setSilentQuestAborted(player, mobj); + if (mobj != null) space_quest.setSilentQuestAborted(player, mobj); groundquests.clearQuest(player, "restuss_rebel_space_mining_1"); groundquests.grantQuest(player, "restuss_rebel_space_mining_1"); } @@ -213,7 +213,7 @@ public class restuss_rebel_space_mining extends script.base_script public void restuss_rebel_space_mining_action_giveSpaceMine2(obj_id player, obj_id npc) throws InterruptedException { obj_id mobj = space_quest._getQuest(player, "space_mining_destroy", "restuss_rebel_mining_2"); - space_quest.setSilentQuestAborted(player, mobj); + if (mobj != null) space_quest.setSilentQuestAborted(player, mobj); groundquests.clearQuest(player, "restuss_rebel_space_mining_2"); groundquests.grantQuest(player, "restuss_rebel_space_mining_2"); }