diff options
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r-- | src/being/being.cpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index a0add020e..49fb6a480 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -103,9 +103,6 @@ const unsigned int CACHE_SIZE = 50; -int Being::mNumberOfHairstyles = 1; -int Being::mNumberOfRaces = 1; - int Being::mUpdateConfigTime = 0; unsigned int Being::mConfLineLim = 0; int Being::mSpeechType = 0; @@ -2625,27 +2622,6 @@ void Being::dumpSprites() const restrict2 } } -void Being::load() -{ - // Hairstyles are encoded as negative numbers. Count how far negative - // we can go. - int hairstyles = 1; - while (ItemDB::get(-hairstyles).getSprite(Gender::MALE, - BeingTypeId_zero) != paths.getStringValue("spriteErrorFile")) - { - hairstyles ++; - } - mNumberOfHairstyles = hairstyles; - - int races = 100; - while (ItemDB::get(-races).getSprite(Gender::MALE, BeingTypeId_zero) != - paths.getStringValue("spriteErrorFile")) - { - races ++; - } - mNumberOfRaces = races - 100; -} - void Being::updateName() restrict2 { if (mShowName) |