fix some tg stuff

This commit is contained in:
Ling
2018-07-20 13:59:55 +02:00
parent 0ece31799c
commit ea5159809f
3 changed files with 9 additions and 3 deletions

View File

@@ -23,6 +23,12 @@ tgstation.int
tgstation.rsc
tgstation.lk
tgstation.dyn.rsc
yogstation.dmb
yogstation.int
yogstation.rsc
yogstation.lk
yogstation.dyn.rsc
libvg.dll
libmariadb.dll
rust_g.dll
BSQL.dll

View File

@@ -18,7 +18,7 @@ if [ -d ".git" ]; then
cp -r .git/logs/* $1/.git/logs/
fi
cp tgstation.dmb tgstation.rsc $1/
cp yogstation.dmb yogstation.rsc $1/
cp -r _maps/* $1/_maps/
cp icons/default_title.dmi $1/icons/
cp -r icons/minimaps/* $1/icons/minimaps/

View File

@@ -32,7 +32,7 @@ def stage2(map):
txt = "-M{}".format(map)
else:
txt = ''
args = "bash tools/travis/dm.sh {} tgstation.dme".format(txt)
args = "bash tools/travis/dm.sh {} yogstation.dme".format(txt)
print(args)
p = subprocess.Popen(args, shell=True)
wait(p)
@@ -42,7 +42,7 @@ def stage3(profile_mode=False):
play("sound/misc/compiler-stage2.ogg")
logfile = open('server.log~','w')
p = subprocess.Popen(
"DreamDaemon tgstation.dmb 25001 -trusted",
"DreamDaemon yogstation.dmb 25001 -trusted",
shell=True, stdout=PIPE, stderr=STDOUT)
try:
while p.returncode is None: