diff options
| author | 2020-03-05 10:38:43 +0000 | |
|---|---|---|
| committer | 2020-03-05 10:38:43 +0000 | |
| commit | e8388a28bdea0da50fbca75c051aaeed9a4e91f4 (patch) | |
| tree | 2f440e719c069d9477fd6aec3f4e05860f1baa72 | |
| parent | KMh and MPh changed to km/h and mi/h (diff) | |
| signature | ||
INVEX numeric puts mask at index 2, not 3
| -rw-r--r-- | src/core_modules/mode_lists.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core_modules/mode_lists.py b/src/core_modules/mode_lists.py index f560ffa0..19c6dcd5 100644 --- a/src/core_modules/mode_lists.py +++ b/src/core_modules/mode_lists.py @@ -35,7 +35,7 @@ class Module(ModuleManager.BaseModule): @utils.hook("received.346") def on_346(self, event): mode = self._invex(event["server"]) - self._mode_list_mask(event, mode, event["line"].args[3]) + self._mode_list_mask(event, mode, event["line"].args[2]) @utils.hook("received.347") def on_347(self, event): self._mode_list_end(event, self._invex(event["server"])) |
