mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
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
This commit is contained in:
@@ -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 )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user