mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-11 18:26:04 +00:00
11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import { SOLAR_SYSTEM_CLASS_IDS } from '@/hooks/Mapper/components/map/constants.ts';
|
|
|
|
export const isPochvenSpace = (wormholeClassID: number) => {
|
|
switch (wormholeClassID) {
|
|
case SOLAR_SYSTEM_CLASS_IDS.pochven:
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
};
|