Exposed touched objectives when round ends

This commit is contained in:
Geoff Yoerger 2017-12-04 07:58:25 -06:00 committed by Ashcon Partovi
parent f2ed36bcb6
commit 3311a4aa7f
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ public abstract class TouchableGoal<T extends ProximityGoalDefinition> extends P
return team != null &&
!isCompleted(team) &&
hasTouched(team) &&
(team == viewer || showEnemyTouches() || viewer.isObservingType());
(team == viewer || showEnemyTouches() || viewer.isObservingType() || getMatch().isFinished());
}
protected void sendTouchMessage(@Nullable ParticipantState toucher, boolean includeToucher) {