[FIXED] Elizabeth doesn't have a FLAVOR_NUKE

The_J

Say No 2 Net Validations
Administrator
Supporter
Joined
Oct 22, 2008
Messages
42,070
Location
DE/NL/FR
Originally posted here: There's a bug in the XML files for Elizabeth.

Exampe flavors for normal leaders (last two in the files):
PHP:
    <Row>
      <LeaderType>LEADER_DARIUS</LeaderType>
      <FlavorType>FLAVOR_WATER_CONNECTION</FlavorType>
      <Flavor>5</Flavor>
    </Row>
    <Row>
      <LeaderType>LEADER_DARIUS</LeaderType>
      <FlavorType>FLAVOR_NUKE</FlavorType>
      <Flavor>4</Flavor>
    </Row>

For Elizabeth:
PHP:
    <Row>
      <LeaderType>LEADER_ELIZABETH</LeaderType>
      <FlavorType>FLAVOR_WATER_CONNECTION</FlavorType>
      <Flavor>7</Flavor>
    </Row>
    <Row>
      <LeaderType>LEADER_ELIZABETH</LeaderType>
      <FlavorType>FLAVOR_WATER_CONNECTION</FlavorType>
      <Flavor>4</Flavor>
    </Row>

Does anyone else see it in the XML files?
 
I don't know if XML is an essential part of coding (not a programmer), but I found this while writing down leader traits:

<Row>
<LeaderType>LEADER_ELIZABETH</LeaderType>
<FlavorType>FLAVOR_WATER_CONNECTION</FlavorType>
<Flavor>7</Flavor>
</Row>
<Row>
<LeaderType>LEADER_ELIZABETH</LeaderType>
<FlavorType>FLAVOR_WATER_CONNECTION</FlavorType>
<Flavor>4</Flavor>

Where the second one should've been:

<FlavorType>FLAVOR_NUKE</FlavorType>

If this is preventing Elizabeth from building nukes, would changing the line fix this?
 
Back
Top Bottom