diff options
Diffstat (limited to 'src/monster.cpp')
-rw-r--r-- | src/monster.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/monster.cpp b/src/monster.cpp index dfe84e65..23be9395 100644 --- a/src/monster.cpp +++ b/src/monster.cpp @@ -28,7 +28,7 @@ #include "sound.h" #include "text.h" -#include "gui/palette.h" +#include "gui/userpalette.h" #include "net/net.h" @@ -67,8 +67,8 @@ Monster::Monster(int id, int job, Map *map): } } - mNameColor = &guiPalette->getColor(Palette::MONSTER); - mTextColor = &guiPalette->getColor(Palette::MONSTER); + mNameColor = &userPalette->getColor(UserPalette::MONSTER); + mTextColor = &userPalette->getColor(UserPalette::MONSTER); Being::setName(getInfo().getName()); } |