feat(cli): add command helpers and NotAPlayerError
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user