Fixed a minor cursor bug, changed drill/pump place verification

This commit is contained in:
Anuken
2018-06-14 18:36:55 -04:00
parent fab3704dbd
commit ba67c01dd0
6 changed files with 40 additions and 31 deletions

View File

@@ -159,7 +159,11 @@ public class DesktopInput extends InputHandler{
cursorType = cursor.block().getCursor(cursor);
if(canMine(cursor)){
if(isPlacing()){
cursorType = hand;
}
if(!isPlacing() && canMine(cursor)){
cursorType = drill;
}