Fix CobbleMiner

This commit is contained in:
Рома Данилов 2020-07-29 20:15:38 +05:00 committed by ORelio
parent 8fedd59f0a
commit e91fefadb3

View file

@ -23,15 +23,11 @@ public class CobblestoneMiner: ChatBot
switch (blockType)
{
case Material.Stone:
DigBlock(0, cobblestone, 1);
Thread.Sleep(100);
DigBlock(2, cobblestone, 1);
DigBlock(cobblestone);
break;
case Material.Cobblestone:
DigBlock(0, cobblestone, 1);
Thread.Sleep(100);
DigBlock(2, cobblestone, 1);
DigBlock(cobblestone);
break;
}
}
}
}