gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
267 B
13 lines
267 B
#!/bin/bash
|
|
# LGSM dev_debug.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: http://gameservermanagers.com
|
|
lgsm_version="271215"
|
|
|
|
if [ -f ".dev-debug" ]; then
|
|
rm .dev-debug
|
|
fn_printoknl "Disabled dev-debug"
|
|
else
|
|
date > .dev-debug
|
|
fn_printoknl "Enabled dev-debug"
|
|
fi
|