diff options
author | EmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com> | 2022-06-25 15:13:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-25 15:13:16 +0800 |
commit | 59e714cec0b71d2e6cb4ba4f939436c0b382237b (patch) | |
tree | 4dd7cb8598b2b30d2c0e48f786218faa092160af /features | |
parent | d65b7fa3dff0c7d7a6011caa3d1b1c6624101ec9 (diff) | |
download | SoopyV2-59e714cec0b71d2e6cb4ba4f939436c0b382237b.tar.gz SoopyV2-59e714cec0b71d2e6cb4ba4f939436c0b382237b.tar.bz2 SoopyV2-59e714cec0b71d2e6cb4ba4f939436c0b382237b.zip |
fixed a bug
changed something to let hp thing actually work
Diffstat (limited to 'features')
-rw-r--r-- | features/events/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/events/index.js b/features/events/index.js index 0cbf33c..de5d119 100644 --- a/features/events/index.js +++ b/features/events/index.js @@ -252,7 +252,7 @@ class Events extends Feature { } }) this.todoE = [] - if (this.MythMobsHP.getValue()) { + if (mythMobs.length >= 1) { this.mythMobsElement.setText(mythMobs.join("\n")) } |