* Fixed a problem of AI target handling (e.g. for Precursor Golem)

This commit is contained in:
LevelX2 2017-01-01 14:56:34 +01:00
parent f3c0d3fce0
commit 2162fab114
4 changed files with 42 additions and 35 deletions

View file

@ -554,4 +554,9 @@ public abstract class TargetImpl implements Target {
this.targetTag = targetTag;
}
@Override
public Target getOriginalTarget() {
return this;
}
}