Skip to content

Commit 6b37faf

Browse files
committed
fix: Disallow uninhabitable system types as homesystem
1 parent a500e74 commit 6b37faf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/empire/empire.dto.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {ApiPropertyOptional, OmitType, PickType} from '@nestjs/swagger';
22
import {Empire} from './empire.schema';
33
import {Prop} from '@nestjs/mongoose';
4-
import {SYSTEM_TYPES, SystemTypeName} from '../game-logic/system-types';
4+
import {INHABITABLE_SYSTEM_TYPES, SystemTypeName} from '../game-logic/system-types';
55
import {IsIn, IsOptional} from 'class-validator';
66
import {PartialType} from '../util/partial-type';
77
import {RESOURCES_SCHEMA_PROPERTIES} from '../game-logic/types';
@@ -29,10 +29,10 @@ export class EmpireTemplate extends PickType(Empire, [
2929
@Prop({type: String})
3030
@ApiPropertyOptional({
3131
description: 'The type of home system for this empire. Random if not specified.',
32-
enum: Object.keys(SYSTEM_TYPES),
32+
enum: INHABITABLE_SYSTEM_TYPES,
3333
})
3434
@IsOptional()
35-
@IsIn(Object.keys(SYSTEM_TYPES))
35+
@IsIn(INHABITABLE_SYSTEM_TYPES)
3636
homeSystem?: SystemTypeName;
3737
}
3838

src/game-logic/system-types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,5 @@ export const SYSTEM_TYPES = {
6969
},
7070
} as const satisfies Record<string, SystemType>;
7171
export const SYSTEM_TYPE_NAMES = Object.keys(SYSTEM_TYPES) as SystemTypeName[];
72+
export const INHABITABLE_SYSTEM_TYPES = SYSTEM_TYPE_NAMES.filter(s => !s.startsWith('uninhabitable_'));
7273
export type SystemTypeName = keyof typeof SYSTEM_TYPES;

0 commit comments

Comments
 (0)