formattext
This commit is contained in:
@@ -109,7 +109,7 @@ class ActionLogger{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$text = $this->formatText($formatType);
|
$text = $this->formatText($text, $formatType);
|
||||||
$this->generalHistoryLog[] = $text;
|
$this->generalHistoryLog[] = $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -124,7 +124,7 @@ class ActionLogger{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$text = $this->formatText($formatType);
|
$text = $this->formatText($text, $formatType);
|
||||||
$this->generalActionLog[] = $text;
|
$this->generalActionLog[] = $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -139,7 +139,7 @@ class ActionLogger{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$text = $this->formatText($formatType);
|
$text = $this->formatText($text, $formatType);
|
||||||
$this->generalBattleResultLog[] = $text;
|
$this->generalBattleResultLog[] = $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -154,7 +154,7 @@ class ActionLogger{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$text = $this->formatText($formatType);
|
$text = $this->formatText($text, $formatType);
|
||||||
$this->generalBattleDetailLog[] = $text;
|
$this->generalBattleDetailLog[] = $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -169,7 +169,7 @@ class ActionLogger{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$text = $this->formatText($formatType);
|
$text = $this->formatText($text, $formatType);
|
||||||
$this->nationalHistoryLog[] = $text;
|
$this->nationalHistoryLog[] = $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -184,7 +184,7 @@ class ActionLogger{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$text = $this->formatText($formatType);
|
$text = $this->formatText($text, $formatType);
|
||||||
$this->globalActionLog[] = $text;
|
$this->globalActionLog[] = $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -199,7 +199,7 @@ class ActionLogger{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$text = $this->formatText($formatType);
|
$text = $this->formatText($text, $formatType);
|
||||||
$this->globalHistoryLog[] = $text;
|
$this->globalHistoryLog[] = $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user