From 3311a4aa7fe170291deab4b4dfb0b05396aba526 Mon Sep 17 00:00:00 2001 From: Geoff Yoerger Date: Mon, 4 Dec 2017 07:58:25 -0600 Subject: [PATCH] Exposed touched objectives when round ends --- PGM/src/main/java/tc/oc/pgm/goals/TouchableGoal.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PGM/src/main/java/tc/oc/pgm/goals/TouchableGoal.java b/PGM/src/main/java/tc/oc/pgm/goals/TouchableGoal.java index b91c3ed..6932ed5 100644 --- a/PGM/src/main/java/tc/oc/pgm/goals/TouchableGoal.java +++ b/PGM/src/main/java/tc/oc/pgm/goals/TouchableGoal.java @@ -176,7 +176,7 @@ public abstract class TouchableGoal 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) {