Klandis
10-13-2003, 06:28 PM
I used to filter them [Hunt] until I went on the ldon raid with 250 chests, so liting them dark yellow (only unused basic color) now instead.
diff -u -r1.39 map.cpp
--- map.cpp 2 Oct 2003 04:00:34 -0000 1.39
+++ map.cpp 14 Oct 2003 00:36:23 -0000
@@ -3682,7 +3682,9 @@
// set pen to black
p.setPen(black);
- if (spawn->typeflag() == 65)
+ if(spawn->classVal() == 62)
+ p.setBrush(darkYellow);
+ else if (spawn->typeflag() == 65)
p.setBrush(magenta);
else
{
diff -u -r1.39 map.cpp
--- map.cpp 2 Oct 2003 04:00:34 -0000 1.39
+++ map.cpp 14 Oct 2003 00:36:23 -0000
@@ -3682,7 +3682,9 @@
// set pen to black
p.setPen(black);
- if (spawn->typeflag() == 65)
+ if(spawn->classVal() == 62)
+ p.setBrush(darkYellow);
+ else if (spawn->typeflag() == 65)
p.setBrush(magenta);
else
{