Skip to content

Commit

Permalink
partially fixed jstar88#15
Browse files Browse the repository at this point in the history
  • Loading branch information
jstar88 committed Mar 28, 2015
1 parent b5774d5 commit ca76816
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions implementations/Xgp/LangImplementation.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ public function getAttackersAttackingDescr($amount, $damage)
}
public function getDefendersDefendingDescr($damage)
{
return $this->lang['fleet_attack_2'] . $damage . ' ' . $this->lang['damage'];
return $this->lang['fleet_attack_2'] .' '. $damage . ' ' . $this->lang['damage'];
}
public function getDefendersAttackingDescr($amount, $damage)
{
return $this->lang['fleet_defs_1'] . ' ' . $damage . " " . $this->lang['damage'] . " with $amount shots ";
}
public function getAttackersDefendingDescr($damage)
{
return $this->lang['fleet_defs_2'] . $damage . ' ' . $this->lang['damage'];
return $this->lang['fleet_defs_2']. ' ' . $damage . ' ' . $this->lang['damage'];
}
public function getAttackerHasWon()
{
Expand Down

0 comments on commit ca76816

Please sign in to comment.