fix error in docking station on chunk unload, fixes #2898
This commit is contained in:
parent
082942172b
commit
0f26ef1c05
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ public abstract class DockingStation {
|
|||
}
|
||||
|
||||
public boolean linkIsDocked() {
|
||||
if (isTaken()) {
|
||||
if (robotTaking() != null) {
|
||||
return robotTaking().getDockingStation() == this;
|
||||
} else {
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue