Merge branch 'main' into main

This commit is contained in:
Caixukun1919810
2024-05-15 18:56:44 +08:00
committed by GitHub
Unverified
+15 -3
View File
@@ -391,6 +391,18 @@ class Minecraft {
static resourcePackTranslate(key, params = []) { static resourcePackTranslate(key, params = []) {
return I18nAPI.get(key, params); return I18nAPI.get(key, params);
} }
static getPlayerFromUuid(uuid) {
GMLIB_API.getPlayerFromUuid(uuid);
}
static getPlayerFromUniqueId(uniqueId) {
GMLIB_API.getPlayerFromUniqueId(uniqueId);
}
static getEntityFromUniqueId(uniqueId) {
GMLIB_API.getFromUniqueId(uniqueId);
}
} }
class Recipes { class Recipes {
@@ -844,7 +856,7 @@ class I18nAPI {
} }
}; };
class data { class UserCache {
constructor() { constructor() {
throw new Error("Static class cannot be instantiated"); throw new Error("Static class cannot be instantiated");
} }
@@ -872,7 +884,7 @@ class data {
static getUuidByName(name){ static getUuidByName(name){
return GMLIB_API.getUuidByName(name); return GMLIB_API.getUuidByName(name);
} }
} };
LLSE_Player.prototype.toEntity = function () { LLSE_Player.prototype.toEntity = function () {
return GMLIB_API.PlayerToEntity(this); return GMLIB_API.PlayerToEntity(this);
@@ -910,5 +922,5 @@ module.exports = {
JsonI18n, JsonI18n,
Version, Version,
I18nAPI, I18nAPI,
data UserCache
}; };