mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-05-10 22:41:10 -07:00
Fixed #11987
This commit is contained in:
parent
327464ba82
commit
24d04ddebf
1 changed files with 13 additions and 0 deletions
|
|
@ -215,6 +215,19 @@ public class CanvasBlock extends Block{
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void afterPickedUp(){
|
||||
super.afterPickedUp();
|
||||
blending = 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void dropped(){
|
||||
super.dropped();
|
||||
|
||||
onProximityUpdate();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean readable(LExecutor exec){
|
||||
return isValid() && (exec.privileged || this.team == exec.team);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue