From 66e56d3626b3a057fe44f3bcfd429a74328f1303 Mon Sep 17 00:00:00 2001
From: Dennis Postma <dennis@directonline.io>
Date: Fri, 18 Oct 2024 00:33:06 +0200
Subject: [PATCH] Renamed Keybindings > Hotkeys

---
 src/components/gui/{Keybindings.vue => Hotkeys.vue} | 0
 src/screens/Game.vue                                | 4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename src/components/gui/{Keybindings.vue => Hotkeys.vue} (100%)

diff --git a/src/components/gui/Keybindings.vue b/src/components/gui/Hotkeys.vue
similarity index 100%
rename from src/components/gui/Keybindings.vue
rename to src/components/gui/Hotkeys.vue
diff --git a/src/screens/Game.vue b/src/screens/Game.vue
index 86c3f29..5c519cd 100644
--- a/src/screens/Game.vue
+++ b/src/screens/Game.vue
@@ -8,7 +8,7 @@
         <div v-if="isLoaded">
           <Menu />
           <Hud />
-          <Keybindings />
+          <Hotkeys />
           <Minimap />
           <Zone />
           <Chat />
@@ -32,7 +32,7 @@ import Menu from '@/components/gui/Menu.vue'
 import ExpBar from '@/components/gui/ExpBar.vue'
 import Hud from '@/components/gui/Hud.vue'
 import Zone from '@/components/zone/Zone.vue'
-import Keybindings from '@/components/gui/Keybindings.vue'
+import Hotkeys from '@/components/gui/Hotkeys.vue'
 import Chat from '@/components/gui/Chat.vue'
 import GmTools from '@/components/gameMaster/GmTools.vue'
 import GmPanel from '@/components/gameMaster/GmPanel.vue'