diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-12-09 21:50:19 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-12-09 21:50:19 +0800 |
commit | 695138fbe0c1ba5450e7e632747e466605ac4548 (patch) | |
tree | 4bb41d7dcfef630eb18612d8d9344be2c403e5dd /features/mining | |
parent | 5db44566ab59077701ad6ba40116335294865618 (diff) | |
download | SoopyV2-695138fbe0c1ba5450e7e632747e466605ac4548.tar.gz SoopyV2-695138fbe0c1ba5450e7e632747e466605ac4548.tar.bz2 SoopyV2-695138fbe0c1ba5450e7e632747e466605ac4548.zip |
move mappings to seperate module
Diffstat (limited to 'features/mining')
-rw-r--r-- | features/mining/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/mining/index.js b/features/mining/index.js index b89d8e6..8622a19 100644 --- a/features/mining/index.js +++ b/features/mining/index.js @@ -1,7 +1,7 @@ /// <reference types="../../../CTAutocomplete" /> /// <reference lib="es2015" /> import Feature from "../../featureClass/class"; -import { m } from "../../mappings/mappings"; +import { m } from "../../../mappings/mappings"; import * as stringUtils from "../../utils/stringUtils"; import * as utils from "../../utils/utils" import HudTextElement from "../hud/HudTextElement"; |