diff options
Diffstat (limited to 'client/map/map.gd')
-rw-r--r-- | client/map/map.gd | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/client/map/map.gd b/client/map/map.gd index c027fd4a..1155a70c 100644 --- a/client/map/map.gd +++ b/client/map/map.gd @@ -15,15 +15,13 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. # -@tool class_name Map extends Node3D var tile_by_pos: Dictionary = {} func _ready(): - if !Engine.is_editor_hint(): - Multiplayer.connect("update_map", update) + Multiplayer.connect("update_map", update) func update(pos, tile_name, neighbors): var instance: Floor |