mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2025-10-20 00:00:39 +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":{
|
||||
"log":"msg here \n about updates",
|
||||
"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':
|
||||
f.open(serverdata+"joining.log","a+")
|
||||
f=open(serverdata+"joining.log","a+")
|
||||
|
||||
|
||||
elif self.type=='cmndlog':
|
||||
f.open(serverdata+"cmndusage.log","a+")
|
||||
f=open(serverdata+"cmndusage.log","a+")
|
||||
|
||||
else:
|
||||
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
|
||||
from efro.terminal import Clr
|
||||
import json
|
||||
VERSION=61
|
||||
VERSION=62
|
||||
|
||||
def check():
|
||||
_thread.start_new_thread(updateProfilesJson,())
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue