mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2025-11-14 17:46:03 +00:00
minor bug fix
This commit is contained in:
parent
33d6f40a97
commit
9e3e1af8e0
4 changed files with 7 additions and 3 deletions
4
dist/ba_root/mods/changelogs.json
vendored
4
dist/ba_root/mods/changelogs.json
vendored
|
|
@ -2,5 +2,9 @@
|
||||||
"61":{
|
"61":{
|
||||||
"log":"msg here \n about updates",
|
"log":"msg here \n about updates",
|
||||||
"time":"1 Dec 2021"
|
"time":"1 Dec 2021"
|
||||||
|
},
|
||||||
|
"62":{
|
||||||
|
"log":"bug fix in logger.py",
|
||||||
|
"time":"2 DEC 2021 1:40PM IST"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
4
dist/ba_root/mods/tools/Logger.py
vendored
4
dist/ba_root/mods/tools/Logger.py
vendored
|
|
@ -57,11 +57,11 @@ class dumplogs(threading.Thread):
|
||||||
|
|
||||||
|
|
||||||
elif self.type=='joinlog':
|
elif self.type=='joinlog':
|
||||||
f.open(serverdata+"joining.log","a+")
|
f=open(serverdata+"joining.log","a+")
|
||||||
|
|
||||||
|
|
||||||
elif self.type=='cmndlog':
|
elif self.type=='cmndlog':
|
||||||
f.open(serverdata+"cmndusage.log","a+")
|
f=open(serverdata+"cmndusage.log","a+")
|
||||||
|
|
||||||
else:
|
else:
|
||||||
f=open(serverdata+"logs.log","a+")
|
f=open(serverdata+"logs.log","a+")
|
||||||
|
|
|
||||||
2
dist/ba_root/mods/tools/ServerUpdate.py
vendored
2
dist/ba_root/mods/tools/ServerUpdate.py
vendored
|
|
@ -4,7 +4,7 @@ import _thread
|
||||||
import urllib.request
|
import urllib.request
|
||||||
from efro.terminal import Clr
|
from efro.terminal import Clr
|
||||||
import json
|
import json
|
||||||
VERSION=61
|
VERSION=62
|
||||||
|
|
||||||
def check():
|
def check():
|
||||||
_thread.start_new_thread(updateProfilesJson,())
|
_thread.start_new_thread(updateProfilesJson,())
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue