For test results, bug reports, announcements of new builds etc.
Moderators: winston, another_commander, Getafix
-
Smivs
- Retired Assassin
- Posts: 8408
- Joined: Tue Feb 09, 2010 11:31 am
- Location: Lost in space
-
Contact:
Post
by Smivs »
I was just scanning the core game's equipment.plist when I spotted this
Code: Select all
( /* Thargoid equipment, incompatible with non-thargoid ships. Not buyable because of its TL. */
100, 1000, "Thargon",
"thargon",
"Alien drone ship.",
{
strict_mode_compatible = true;
available_to_player = false;
}
),
( /* Thargoid equipment, standardised name. Incompatible with non-thargoid ships. Not buyable because of its TL. */
100, 1000, "Thargon",
"EQ_THARGON",
"Alien drone ship.",
{
strict_mode_compatible = true;
available_to_player = false;
}
),
It just struck me as odd. What is the function of the first entry?
-
JensAyton
- Grand Admiral Emeritus
- Posts: 6657
- Joined: Sat Apr 02, 2005 2:43 pm
- Location: Sweden
-
Contact:
Post
by JensAyton »
Backwards compatibility with (potential) old OXPs.
-
Smivs
- Retired Assassin
- Posts: 8408
- Joined: Tue Feb 09, 2010 11:31 am
- Location: Lost in space
-
Contact:
Post
by Smivs »
JensAyton wrote:Backwards compatibility with (potential) old OXPs.
Ah, I see! And there was me thinking it might be a typo...