From 9c351f2e6582485937dd829dfff4b7fbdd754ac9 Mon Sep 17 00:00:00 2001 From: David Markowitz Date: Fri, 19 Jun 2026 18:49:42 -0700 Subject: [PATCH] default weights to 1 --- dZoneManager/Zone.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dZoneManager/Zone.cpp b/dZoneManager/Zone.cpp index 7a884a65..a5a8fa97 100644 --- a/dZoneManager/Zone.cpp +++ b/dZoneManager/Zone.cpp @@ -137,6 +137,7 @@ void Zone::LoadZoneIntoMemory() { node->weight = GeneralUtils::TryParse(data->GetValueAsString(), 1); if (node->weight <= 0) { LOG("Found a spawner with a weight of <= 0, is this intentional? %s:%i", info.name.c_str(), node->nodeID); + node->weight = 1; } } }