PDA

View Full Version : PvP options broken with latest CVS ? (4)



malibustacey
12-20-2001, 06:14 PM
Instead of the different triangles that I was used to, it now seems to display the 'normal' square all the time.


Anyone want to confirm this ? Thxu ;)

trtracer
12-22-2001, 03:29 AM
Quick an dirty:

--- spawn.cpp Sat Dec 22 10:26:31 2001
+++ spawn.cpp Fri Dec 21 23:44:29 2001
@@ -642,6 +642,8 @@

void Spawn::calcDeityTeam()
{
+ m_deityTeam = DTEAM_OTHER;
+
switch(deity())
{
//Good
@@ -671,11 +673,12 @@
break;
}

- m_deityTeam = DTEAM_OTHER;
}

void Spawn::calcRaceTeam()
{
+ m_raceTeam = RTEAM_OTHER;
+
switch(race())
{
case 1: // Human
@@ -703,7 +706,6 @@
break;
}

- m_raceTeam = RTEAM_OTHER;
}

QString Spawn::cleanedName() const

malibustacey
12-23-2001, 02:04 AM
doing this seems to have fixed the problems, but not the triangles. I have a friend whos copy it worked on, but mine doesnt. The names display the proper colour but the square remains. Was the Cvs updated with those patches ? Since he received the spawn.cpp off me I'm assuming this may be the case.