aboutsummaryrefslogtreecommitdiff
path: root/gamemode/hud
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/hud')
-rw-r--r--gamemode/hud/games/base.lua2
-rw-r--r--gamemode/hud/games/connectthedots.lua2
-rw-r--r--gamemode/hud/games/rubickscircle.lua2
3 files changed, 6 insertions, 0 deletions
diff --git a/gamemode/hud/games/base.lua b/gamemode/hud/games/base.lua
index eba7642..5bf455a 100644
--- a/gamemode/hud/games/base.lua
+++ b/gamemode/hud/games/base.lua
@@ -1,6 +1,8 @@
--A file to show what functions are used for minigames
print("Base included!")
+Game = Game or {}
+
--Required functions
--Called once when the plyer starts casting
Game.Cast = function(spelltab,difficulty)
diff --git a/gamemode/hud/games/connectthedots.lua b/gamemode/hud/games/connectthedots.lua
index 20cc601..9e05919 100644
--- a/gamemode/hud/games/connectthedots.lua
+++ b/gamemode/hud/games/connectthedots.lua
@@ -1,6 +1,8 @@
--The connet the dots spell game
print("Hi from connectthedots.lua")
+Game = Game or {}
+
--Minigame is held in self.dots, each dot is a table,
--dot[num] = {dot x, dot y, {
-- {armor_start_angle, armor_end_angle},
diff --git a/gamemode/hud/games/rubickscircle.lua b/gamemode/hud/games/rubickscircle.lua
index 2e81bba..a659f9c 100644
--- a/gamemode/hud/games/rubickscircle.lua
+++ b/gamemode/hud/games/rubickscircle.lua
@@ -12,6 +12,8 @@ print("rubick's circle included!")
/ | \
]]-- 5 4 3
+Game = Game or {}
+
--Required functions
--Called once when the plyer starts casting
Game.Cast = function(spelltab,difficulty)