summaryrefslogtreecommitdiff
path: root/engine/config/constants.ts
diff options
context:
space:
mode:
Diffstat (limited to 'engine/config/constants.ts')
-rw-r--r--engine/config/constants.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/engine/config/constants.ts b/engine/config/constants.ts
index fa3f81b..e93986b 100644
--- a/engine/config/constants.ts
+++ b/engine/config/constants.ts
@@ -14,7 +14,7 @@ export namespace KeyConstants {
// value -> [key] from KeyActions
export const ActionKeys: Map<Action, string[]> = Object.keys(
- KeyActions
+ KeyActions,
).reduce((acc: Map<Action, string[]>, key) => {
const action = KeyActions[key];
@@ -42,6 +42,4 @@ export namespace Miscellaneous {
export const DEFAULT_GRID_WIDTH = 30;
export const DEFAULT_GRID_HEIGHT = 30;
-
- export const SERVER_TICK_RATE = 5 / 100;
}