我不太明白收到此消息后的含义。非常感谢帮助。
@Override
public int onLoop() throws InterruptedException {
if(!myPlayer().isAnimating()){
inventory.dropAll(Ore_id);
}
Entity rocks = objects.closest(Rock_id);
if(rocks != null){
rocks.interact("Mine Rock");
sleep(random(25, 30));
我在这里收到一条错误消息"entity cannot be resolved as a type"
,即使我已经导入了一个库。