From f64f9fad4f581ed5ebb274e48e6fdc7a4839fb21 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 20 Mar 2007 16:43:20 +0000 Subject: (svn r9377) -Fix (r9376): the off-by-one error was also present at another location :( --- src/players.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/players.cpp b/src/players.cpp index 1da49754e..fcac79415 100644 --- a/src/players.cpp +++ b/src/players.cpp @@ -107,6 +107,7 @@ PlayerFace ConvertFromOldPlayerFace(uint32 face) SetPlayerFaceBits(pf, PFV_MOUSTACHE, ge, max(lips, 1U) - 1); } else { if (!HASBIT(ge, GENDER_FEMALE)) { + lips = lips * 15 / 16; lips -= 3; if (HASBIT(ge, ETHNICITY_BLACK) && lips > 8) lips = 0; } else { -- cgit v1.2.3-54-g00ecf