Removed logic disable timer
This commit is contained in:
@@ -397,6 +397,17 @@ public class LogicBlock extends Block{
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeFromProximity(){
|
||||
super.removeFromProximity();
|
||||
|
||||
for(var link : executor.links){
|
||||
if(!link.enabled && link.lastDisabler == this){
|
||||
link.enabled = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Cursor getCursor(){
|
||||
return !accessible() ? SystemCursor.arrow : super.getCursor();
|
||||
|
||||
Reference in New Issue
Block a user