mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Fix CobbleMiner
This commit is contained in:
parent
8fedd59f0a
commit
e91fefadb3
1 changed files with 3 additions and 7 deletions
|
|
@ -23,15 +23,11 @@ public class CobblestoneMiner: ChatBot
|
||||||
switch (blockType)
|
switch (blockType)
|
||||||
{
|
{
|
||||||
case Material.Stone:
|
case Material.Stone:
|
||||||
DigBlock(0, cobblestone, 1);
|
DigBlock(cobblestone);
|
||||||
Thread.Sleep(100);
|
|
||||||
DigBlock(2, cobblestone, 1);
|
|
||||||
break;
|
break;
|
||||||
case Material.Cobblestone:
|
case Material.Cobblestone:
|
||||||
DigBlock(0, cobblestone, 1);
|
DigBlock(cobblestone);
|
||||||
Thread.Sleep(100);
|
|
||||||
DigBlock(2, cobblestone, 1);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue