feat: add nukkit support
Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
parent
0fbccbc05f
commit
19e7692756
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@ms/bukkit",
|
"name": "@ms/bukkit",
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"description": "MiaoScript api package",
|
"description": "MiaoScript bukkit package",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"miaoscript",
|
"miaoscript",
|
||||||
"minecraft",
|
"minecraft",
|
||||||
|
@ -19,7 +19,6 @@ export class BukkitCommand extends command.Command {
|
|||||||
init() {
|
init() {
|
||||||
this.commandMap = reflect.on(Bukkit.getPluginManager()).get('commandMap').get();
|
this.commandMap = reflect.on(Bukkit.getPluginManager()).get('commandMap').get();
|
||||||
}
|
}
|
||||||
|
|
||||||
create(plugin: any, command: string) {
|
create(plugin: any, command: string) {
|
||||||
var cmd = this.commandMap.getCommand(command)
|
var cmd = this.commandMap.getCommand(command)
|
||||||
if (cmd && cmd instanceof PluginCommand) { return cmd };
|
if (cmd && cmd instanceof PluginCommand) { return cmd };
|
||||||
|
@ -61,6 +61,11 @@ function detectServer() {
|
|||||||
return 'sponge'
|
return 'sponge'
|
||||||
} catch (ex) {
|
} catch (ex) {
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
|
Java.type("cn.nukkit.Nukkit");
|
||||||
|
return 'nukkit'
|
||||||
|
} catch (ex) {
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
Java.type("net.md_5.bungee.api.ProxyServer");
|
Java.type("net.md_5.bungee.api.ProxyServer");
|
||||||
return 'bungee'
|
return 'bungee'
|
||||||
|
Loading…
Reference in New Issue
Block a user