From 38673aa4aadcb016fdc34e1b0779704eb56eb3c1 Mon Sep 17 00:00:00 2001 From: Tsubasa6848 <116721335+Tsubasa6848@users.noreply.github.com> Date: Sat, 4 May 2024 00:46:51 +0800 Subject: [PATCH] fix: remove debug codes --- src/CompatibilityApi.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/CompatibilityApi.cpp b/src/CompatibilityApi.cpp index c442c0c..fee336c 100644 --- a/src/CompatibilityApi.cpp +++ b/src/CompatibilityApi.cpp @@ -59,7 +59,6 @@ void Export_Compatibility_API() { }); RemoteCall::exportAs("GMLIB_API", "setPlayerNbt", [](std::string uuid, CompoundTag* nbt, bool forceCreate) -> bool { auto uid = mce::UUID::fromString(uuid); - logger.warn(nbt->toSnbt()); return GMLIB_Player::setPlayerNbt(uid, *nbt, forceCreate); }); RemoteCall::exportAs( @@ -67,7 +66,6 @@ void Export_Compatibility_API() { "setPlayerNbtTags", [](std::string uuid, CompoundTag* nbt, std::vector tags) -> bool { auto uid = mce::UUID::fromString(uuid); - logger.warn(nbt->toSnbt()); return GMLIB_Player::setPlayerNbtTags(uid, *nbt, tags); } );