lib.php의 글로벌 변수를 GameConst로 이동

- 계략의 게임 내 영단어를 trick에서 sabotage로 변경
This commit is contained in:
2018-04-16 02:05:46 +09:00
parent 0c9099c868
commit 1d0fb7151d
17 changed files with 148 additions and 178 deletions
+4 -4
View File
@@ -64,12 +64,12 @@ function getTnmtFightLogAll(int $group) {
return join('<br>',getFormattedFileLogAll("logs/fight{$group}.txt"));
}
function pushTrickLog($log) {
pushRawFileLog("logs/_tricklog.txt", $log);
function pushSabotageLog($log) {
pushRawFileLog("logs/_sabotagelog.txt", $log);
}
function getTrickLogRecent($count) {
return join('<br>', getFormattedFileLogRecent("logs/_tricklog.txt", $count, 150));
function getSabotageLogRecent($count) {
return join('<br>', getFormattedFileLogRecent("logs/_sabotagelog.txt", $count, 150));
}
function pushProcessLog($log) {