diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-03-04 07:51:39 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-03-04 07:51:39 +0800 |
commit | 4784af7103fb0bd45aad28a662ed44297ac7e0b8 (patch) | |
tree | 006e5ca1023dba398bbb2602e8c1b00fe963ddb6 /featureClass/featureManager.js | |
parent | 6b4f91e27d037b10e6c242352211e2774c34573e (diff) | |
download | SoopyV2-4784af7103fb0bd45aad28a662ed44297ac7e0b8.tar.gz SoopyV2-4784af7103fb0bd45aad28a662ed44297ac7e0b8.tar.bz2 SoopyV2-4784af7103fb0bd45aad28a662ed44297ac7e0b8.zip |
Fix command registering breaking
Fix dungeon map and solvers breaking with new map offset
Dungeon map Use items instead of text to show puzzles
Allow for cata over 50 in hud stat
Diffstat (limited to 'featureClass/featureManager.js')
-rw-r--r-- | featureClass/featureManager.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/featureClass/featureManager.js b/featureClass/featureManager.js index 2502b02..4d3c616 100644 --- a/featureClass/featureManager.js +++ b/featureClass/featureManager.js @@ -371,7 +371,7 @@ class FeatureManager { let event = this.registerCustom("command", func, context) - event.trigger.setName(commandName) + event.trigger.setName(commandName, true) return event } |