Skip to content

Commit

Permalink
Fixed a bug in which a heavy fighter was mistaken for a heavy laser, in
Browse files Browse the repository at this point in the history
the dutch CR reader.
  • Loading branch information
kokx committed Sep 2, 2011
1 parent e545969 commit 9bc46fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/modules/default/readers/Dutch/CombatReport.php
Expand Up @@ -226,7 +226,7 @@ protected function _createShip($name, $count)
$name = Default_Model_Ship::LIGHT_FIGTHER;
break;
case 'z.gevechtsschip':
$name = Default_Model_Ship::HEAVY_LASER;
$name = Default_Model_Ship::HEAVY_FIGHTER;
break;
case 'kruiser':
$name = Default_Model_Ship::CRUISER;
Expand Down

0 comments on commit 9bc46fc

Please sign in to comment.