Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken
2021-03-02 09:28:42 -05:00
5 changed files with 75 additions and 79 deletions

View File

@@ -172,7 +172,7 @@ public class ConstructBlock extends Block{
@Override
public Cursor getCursor(){
return SystemCursor.hand;
return interactable(player.team()) ? SystemCursor.hand : SystemCursor.arrow;
}
@Override

View File

@@ -126,7 +126,7 @@ public class Door extends Wall{
@Override
public Cursor getCursor(){
return SystemCursor.hand;
return interactable(player.team()) ? SystemCursor.hand : SystemCursor.arrow;
}
@Override