Files
Construct/packs/BP/scripts/classes/Commands/lib/findInstance.js
T
2026-05-19 17:28:58 -07:00

13 lines
433 B
JavaScript

import { system } from '@minecraft/server';
import { structureCollection } from '../../Structure/StructureCollection';
export function findInstance(source, name) {
if (!structureCollection.has(name)) {
system.run(() => source.sendMessage({
rawtext: [{ translate: 'construct.commands.error.instanceNotFound', with: [name] }]
}));
return null;
}
return structureCollection.get(name);
}