@magikcraft/mct1
Version:
Minecraft for Type 1 Diabetes
20 lines (19 loc) • 560 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Location = Java.type('org.bukkit.Location');
var log_1 = require("@magikcraft/mct1/log");
var log = log_1.Logger(__filename);
exports.getLocations = function (world) {
return {
world: world,
locations: {
spawn: new Location(world, 220, 44, 356, 159, 3),
},
regions: {
endPortal: [
new Location(world, 213, 83, 126),
new Location(world, 202, 68, 130),
],
},
};
};