Browse Source

Adding small comment

Signed-off-by: Gene Walters <[email protected]>
Gene Walters 3 năm trước cách đây
mục cha
commit
2c8860708e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Gem/Code/Source/Spawners/RoundRobinSpawner.cpp

+ 1 - 1
Gem/Code/Source/Spawners/RoundRobinSpawner.cpp

@@ -32,7 +32,7 @@ namespace MultiplayerSample
 
         if (m_spawnIndex >= m_spawners.size())
         {
-            AZLOG_WARN("RoundRobinSpawner has an out-of-bounds spawner index. Resetting spawn index to 0.")
+            AZLOG_WARN("RoundRobinSpawner has an out-of-bounds spawner index. Resetting spawn index to 0. Did you forget to call UnregisterPlayerSpawner?")
             m_spawnIndex = 0;
         }