|
From: <xer...@us...> - 2026-07-29 18:42:08
|
Revision: 1683
http://sourceforge.net/p/seq/svn/1683
Author: xerxes00
Date: 2026-07-29 18:42:07 +0000 (Wed, 29 Jul 2026)
Log Message:
-----------
Fix con color: yellow band is +1..+5, red at +6
Verified against the client's runtime 131x131 con table: yellow spans
5 levels above the player. Widen the yellow band in fillConTable so
spawn-list/map con colors match the game. The lower bands
(grey/green/cyan/blue) already matched the client table.
Modified Paths:
--------------
showeq/branches/showeqlegends/src/player.cpp
Modified: showeq/branches/showeqlegends/src/player.cpp
===================================================================
--- showeq/branches/showeqlegends/src/player.cpp 2026-07-29 02:38:41 UTC (rev 1682)
+++ showeq/branches/showeqlegends/src/player.cpp 2026-07-29 18:42:07 UTC (rev 1683)
@@ -1785,8 +1785,8 @@
// Even is our level, natch.
m_conTable[spawnLevel++] = m_conColorBases[tEvenSpawn];
- // 3 levels of yellow.
- for (; spawnLevel < level() + 4; spawnLevel++)
+ // 5 levels of yellow.
+ for (; spawnLevel < level() + 6; spawnLevel++)
{
m_conTable[spawnLevel] = m_conColorBases[tYellowSpawn];
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|