This repository has been archived on 2021-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
scriptcraft/src/main/js/modules/teleport.js

11 lines
309 B
JavaScript

function teleport( entity, location){
if (__plugin.bukkit){
var bkTeleportCause = org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;
entity.teplort( location, bkTeleportCause.PLUGIN);
}
if (__plugin.canary){
entity['teleportTo(Location)'](location);
}
}
module.exports = teleport;