From 3e08b644b046448f1e0697cc2b63d310e1390a66 Mon Sep 17 00:00:00 2001 From: skotlex Date: Tue, 28 Nov 2006 21:14:42 +0000 Subject: - Fixed a typo which made the wedding_ignore_palette setting not work when you log on with them equipped git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9353 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 2 ++ src/map/status.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 0241ccd41..fab7018b1 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2006/11/28 + * Fixed a typo which made the wedding_ignore_palette setting not work when + you log on with them equipped [Skotlex] * Applied The Ultra Mage's patch to use strict npc header formatting parsing. Updated the relevant stock scripts/mapflags that didn't conform to the standard. [Skotlex] diff --git a/src/map/status.c b/src/map/status.c index 51914dede..164c6f4e6 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4318,8 +4318,8 @@ void status_set_viewdata(struct block_list *bl, int class_) } vd = status_get_viewdata(bl); if (vd && vd->cloth_color && ( - (vd->class_==JOB_WEDDING && !battle_config.wedding_ignorepalette) - || (vd->class_==JOB_XMAS && !battle_config.xmas_ignorepalette) + (vd->class_==JOB_WEDDING && battle_config.wedding_ignorepalette) + || (vd->class_==JOB_XMAS && battle_config.xmas_ignorepalette) )) vd->cloth_color = 0; } -- cgit v1.2.3-70-g09d2