LiteLoaderBDS-1.16.40/LiteLoader/Kernel/MC/MobAPI.cpp
2022-09-21 19:47:03 +08:00

14 lines
295 B
C++

//#include "MobAPI.h"
#include <Global.h>
#include <MC/Actor.hpp>
#include <MC/Mob.hpp>
#include <MC/ActorDefinitionIdentifier.hpp>
#include <MC/PathNavigation.hpp>
bool Mob::refreshInventory() {
sendInventory(true);
std::bitset<4> bits("1111");
sendArmor(bits);
return true;
}