From f4179871e2774b8f521b0b518b5d35d60eb83cb7 Mon Sep 17 00:00:00 2001 From: El Al Date: Sat, 31 Aug 2019 21:48:52 +0200 Subject: [PATCH] Initial Commit --- gamemode/core/sh_debug.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gamemode/core/sh_debug.lua b/gamemode/core/sh_debug.lua index 1037c82..66efa53 100644 --- a/gamemode/core/sh_debug.lua +++ b/gamemode/core/sh_debug.lua @@ -5,11 +5,10 @@ -- \ \ / ____ \| | | | | | | | __/ (__| | | | / / -- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/ ---- This is used for debugging :D local prefix if CLIENT then prefix = "[Quantum] : " else prefix = "" end -- A little advertisement for the players -function Quantum.Debug( txt ) +function Quantum.Debug( txt ) -- Very usefull for debugging if( txt ) then MsgC( Color( 200, 200, 200 ), prefix .. "[Debug] " .. txt .. "\n" ) else