aboutsummaryrefslogtreecommitdiff
path: root/gamemode/core
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/core')
-rw-r--r--gamemode/core/logo.lua15
1 files changed, 9 insertions, 6 deletions
diff --git a/gamemode/core/logo.lua b/gamemode/core/logo.lua
index 05c8841..01633eb 100644
--- a/gamemode/core/logo.lua
+++ b/gamemode/core/logo.lua
@@ -1,6 +1,8 @@
local ngm = GM or GAMEMODE
-timer.Simple(5,function()
- local logo = [[
+local logo_printed = logo_printed or false
+if not logo_printed then
+ timer.Simple(1,function()
+ local logo = [[
___
- -_, ,
( ~/|| ||
@@ -10,7 +12,8 @@ timer.Simple(5,function()
( - \\, \\, \\, \\,/ \\, |/
(
-_-
- ]]
- print(logo)
- print(string.format("Version %d.%d.%d",unpack(ngm.Version)))
-end)
+]]
+ print(logo)
+ print(string.format("Version %d.%d.%d",unpack(ngm.Version)))
+ end)
+end