ajbdev / phpsc2replay

Automatically exported from code.google.com/p/phpsc2replay
0 stars 1 forks source link

Copy-paste'd issue in sc2replayutils.php #12

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
        0x0A0303 => array('desc' => 'researches Ground armor level 1', 'name' => 'Ground weapons L1', 'type' => SC2_TYPEUPGRADE, 'subtype' => SC2_SUBTYPECREATE, 'min' => 100, 'gas' => 100),
        0x0A0304 => array('desc' => 'researches Ground armor level 2', 'name' => 'Ground weapons L2', 'type' => SC2_TYPEUPGRADE, 'subtype' => SC2_SUBTYPECREATE, 'min' => 175, 'gas' => 175),
        0x0A0305 => array('desc' => 'researches Ground armor level 3', 'name' => 'Ground weapons L3', 'type' => SC2_TYPEUPGRADE, 'subtype' => SC2_SUBTYPECREATE, 'min' => 225, 'gas' => 225),

...should be:

0x0A0303 => array('desc' => 'researches Ground armor level 1', 'name' => 
'Ground armor L1', 'type' => SC2_TYPEUPGRADE, 'subtype' => SC2_SUBTYPECREATE, 
'min' => 100, 'gas' => 100),
        0x0A0304 => array('desc' => 'researches Ground armor level 2', 'name' => 'Ground armor L2', 'type' => SC2_TYPEUPGRADE, 'subtype' => SC2_SUBTYPECREATE, 'min' => 175, 'gas' => 175),
        0x0A0305 => array('desc' => 'researches Ground armor level 3', 'name' => 'Ground armor L3', 'type' => SC2_TYPEUPGRADE, 'subtype' => SC2_SUBTYPECREATE, 'min' => 225, 'gas' => 225),

Original issue reported on code.google.com by talon...@gmail.com on 1 Sep 2010 at 10:31

GoogleCodeExporter commented 8 years ago

Original comment by lauri.vi...@gmail.com on 1 Sep 2010 at 1:50

GoogleCodeExporter commented 8 years ago
Fixed

Original comment by lauri.vi...@gmail.com on 1 Sep 2010 at 8:53