From 7171b6302b1e844daa4c0ee1e68af98a7e500040 Mon Sep 17 00:00:00 2001 From: hide_d Date: Wed, 18 Jul 2018 04:41:08 +0900 Subject: [PATCH] formattext --- hwe/sammo/ActionLogger.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/hwe/sammo/ActionLogger.php b/hwe/sammo/ActionLogger.php index b77ec2a2..905e445a 100644 --- a/hwe/sammo/ActionLogger.php +++ b/hwe/sammo/ActionLogger.php @@ -109,7 +109,7 @@ class ActionLogger{ return; } - $text = $this->formatText($formatType); + $text = $this->formatText($text, $formatType); $this->generalHistoryLog[] = $text; } @@ -124,7 +124,7 @@ class ActionLogger{ return; } - $text = $this->formatText($formatType); + $text = $this->formatText($text, $formatType); $this->generalActionLog[] = $text; } @@ -139,7 +139,7 @@ class ActionLogger{ return; } - $text = $this->formatText($formatType); + $text = $this->formatText($text, $formatType); $this->generalBattleResultLog[] = $text; } @@ -154,7 +154,7 @@ class ActionLogger{ return; } - $text = $this->formatText($formatType); + $text = $this->formatText($text, $formatType); $this->generalBattleDetailLog[] = $text; } @@ -169,7 +169,7 @@ class ActionLogger{ return; } - $text = $this->formatText($formatType); + $text = $this->formatText($text, $formatType); $this->nationalHistoryLog[] = $text; } @@ -184,7 +184,7 @@ class ActionLogger{ return; } - $text = $this->formatText($formatType); + $text = $this->formatText($text, $formatType); $this->globalActionLog[] = $text; } @@ -199,7 +199,7 @@ class ActionLogger{ return; } - $text = $this->formatText($formatType); + $text = $this->formatText($text, $formatType); $this->globalHistoryLog[] = $text; }