From ab3eec17c663c59af249b9639e780a4aea845c48 Mon Sep 17 00:00:00 2001 From: Flugente Date: Tue, 21 Apr 2015 21:16:40 +0000 Subject: [PATCH] Fix: gentle(wo)men do not judge on the appearance of the opposite gender git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@7827 3b4a5df2-a311-0410-b5c6-a8a6f20db521 --- Laptop/merccompare.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Laptop/merccompare.cpp b/Laptop/merccompare.cpp index 61811e53..67a1b2c1 100644 --- a/Laptop/merccompare.cpp +++ b/Laptop/merccompare.cpp @@ -760,7 +760,7 @@ BOOLEAN DisplayMercData( UINT8 usProfileA, UINT8 usProfileB ) BOOLEAN fSexismDone = FALSE; if ( (pProfileA->bSexist || pProfileB->bSexist) && pProfileA->bSex != pProfileB->bSex ) { - if ( pProfileA->bSexist ) + if ( pProfileA->bSexist == SOMEWHAT_SEXIST || pProfileA->bSexist == VERY_SEXIST ) { switch ( pProfileB->bAppearance ) { @@ -783,7 +783,7 @@ BOOLEAN DisplayMercData( UINT8 usProfileA, UINT8 usProfileB ) } } - if ( pProfileB->bSexist ) + if ( pProfileB->bSexist == SOMEWHAT_SEXIST || pProfileB->bSexist == VERY_SEXIST ) { switch ( pProfileA->bAppearance ) {