From 0beba4dd2b32c30507b92504a94d16ae5cb20cd5 Mon Sep 17 00:00:00 2001 From: Paul Pacheco Date: Mon, 23 Mar 2020 10:28:49 -0500 Subject: [PATCH] fix smell, call parameter the same as base method --- Assets/Mirror/Components/NetworkProximityChecker.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Mirror/Components/NetworkProximityChecker.cs b/Assets/Mirror/Components/NetworkProximityChecker.cs index 8654d6a0b..7b3925c70 100644 --- a/Assets/Mirror/Components/NetworkProximityChecker.cs +++ b/Assets/Mirror/Components/NetworkProximityChecker.cs @@ -95,9 +95,9 @@ public override bool OnCheckObserver(NetworkConnection conn) /// Called when a new player enters, and when scene changes occur /// /// List of players to be updated. Modify this set with all the players that can see this object - /// True if this is the first time the method is called for this object + /// True if this is the first time the method is called for this object /// True if this component calculated the list of observers - public override bool OnRebuildObservers(HashSet observers, bool initial) + public override bool OnRebuildObservers(HashSet observers, bool initialize) { // if force hidden then return without adding any observers. if (forceHidden)