Remove 'Mechanicus' entities from the list of entities

This commit is contained in:
KingRainbow44
2023-05-12 23:20:19 -04:00
parent 6e1617e621
commit ebc6d9a06e

View File

@@ -79,7 +79,8 @@ export function listCommands(): Command[] {
* Fetches and casts all entities in the file.
*/
export function getEntities(): Entity[] {
return entities.map((entry) => {
return entities
.map((entry) => {
const values = Object.values(entry) as string[];
const id = parseInt(values[0]);
return {
@@ -87,7 +88,9 @@ export function getEntities(): Entity[] {
name: values[1],
internal: values[2]
};
});
})
.filter((entity) =>
!entity.name.includes("Mechanicus"));
}
/**