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) {