From 666c488b500bddd4786cbf51e2b1fc5a0a7c67b7 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Mon, 14 Mar 2016 18:40:04 +0100 Subject: [PATCH] --- src/Components/Modules/Node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Modules/Node.cpp b/src/Components/Modules/Node.cpp index 50a8155f..9b2430b7 100644 --- a/src/Components/Modules/Node.cpp +++ b/src/Components/Modules/Node.cpp @@ -42,7 +42,7 @@ namespace Components static int lastStorage = 0; // Don't store nodes if the delta is too small and were not forcing it - if ((Game::Com_Milliseconds() - lastStorage) < NODE_STORE_INTERVAL && !force) return; + if (((Game::Com_Milliseconds() - lastStorage) < NODE_STORE_INTERVAL && !force) || !Node::GetValidNodeCount()) return; lastStorage = Game::Com_Milliseconds(); Proto::Node::List list;