Hard Light Productions Forums

Modding, Mission Design, and Coding => The Modding Workshop => Topic started by: halcyony2k on August 05, 2014, 10:10:55 am

Title: Ship Table Limitations
Post by: halcyony2k on August 05, 2014, 10:10:55 am
This isn't a problem, but I am just curious why the ship class limitation on the tables is at 250.
Title: Re: Ship Table Limitations
Post by: niffiwan on August 05, 2014, 06:43:33 pm
The data structure that holds all the ship info is a C-style array so it has to have a defined size. 250 was picked at some point and there's not been much reason to increase it. Making the limit dynamic would require changing the structure to a C++ vector which would require a fair number of changes in the code. To date it's not been considered worth it to make that change.