From 498ad228f758cec6fd59b165eceace28cc6ad10d Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Mon, 20 Jun 2022 20:28:22 +0800 Subject: + Change default keybind for diana guess warp to CHAR_NONE --- features/events/index.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'features/events') diff --git a/features/events/index.js b/features/events/index.js index 04f5879..cda2c64 100644 --- a/features/events/index.js +++ b/features/events/index.js @@ -75,7 +75,7 @@ class Events extends Feature { this.dingIndex = 0 this.dingSlope = [] - this.warpBindDefault = new TextSetting("Default keybind", "Eg KEY_F", "KEY_F", "inquis_keybind_default", this, "", false) + this.warpBindDefault = new TextSetting("Default keybind", "Eg KEY_F", "CHAR_NONE", "inquis_keybind_default", this, "", false) try { this.warpBind = getKeyBindFromKey(Keyboard[this.warpBindDefault.getValue()], "Warp to nearest location to burrial guess"); @@ -121,12 +121,6 @@ class Events extends Feature { warpData.worldload = [Player.getX(), Player.getY(), Player.getZ()] ChatLib.chat(this.FeatureManager.messagePrefix + "Set /hub location!") }) - this.registerCommand("setpmemb", (...memb) => { - this.FeatureManager.features["dataLoader"].class.partyMembers.clear() - memb.forEach(m => { - this.FeatureManager.features["dataLoader"].class.partyMembers.add(memb) - }) - }) } entityJoinWorldEvent(e) { -- cgit