diff options
author | Dastgir <dastgir@users.noreply.github.com> | 2015-10-26 20:57:44 +0530 |
---|---|---|
committer | Dastgir <dastgir@users.noreply.github.com> | 2015-10-26 20:57:44 +0530 |
commit | 1836ebbc6eb133ecc06232bfa63a3bbb93e4c07d (patch) | |
tree | 5ef432871dcf0916d03e1ab5e5ee62fef7d7719a /src/map/status.c | |
parent | ebbfc0353bf96593906fdc7a73afdbfe2eec8991 (diff) | |
parent | 6f2dd6249fa364ba202631e18ac667d7a3f52b3c (diff) | |
download | hercules-1836ebbc6eb133ecc06232bfa63a3bbb93e4c07d.tar.gz hercules-1836ebbc6eb133ecc06232bfa63a3bbb93e4c07d.tar.bz2 hercules-1836ebbc6eb133ecc06232bfa63a3bbb93e4c07d.tar.xz hercules-1836ebbc6eb133ecc06232bfa63a3bbb93e4c07d.zip |
Merge pull request #824 from Jedzkie/master
- Update the Status Icons of Items.
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c index 7a7a4f415..1a07f74dc 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -918,6 +918,8 @@ void initChangeTables(void) { status->dbs->IconChangeTable[SC_SUPER_STAR] = SI_SUPER_STAR; status->dbs->IconChangeTable[SC_STRANGELIGHTS] = SI_STRANGELIGHTS; status->dbs->IconChangeTable[SC_DECORATION_OF_MUSIC] = SI_DECORATION_OF_MUSIC; + status->dbs->IconChangeTable[SC_LJOSALFAR] = SI_LJOSALFAR; + status->dbs->IconChangeTable[SC_MERMAID_LONGING] = SI_MERMAID_LONGING; //Other SC which are not necessarily associated to skills. status->dbs->ChangeFlagTable[SC_ATTHASTE_POTION1] = SCB_ASPD; @@ -1024,6 +1026,8 @@ void initChangeTables(void) { status->dbs->ChangeFlagTable[SC_SUPER_STAR] |= SCB_NONE; status->dbs->ChangeFlagTable[SC_STRANGELIGHTS] |= SCB_NONE; status->dbs->ChangeFlagTable[SC_DECORATION_OF_MUSIC] |= SCB_NONE; + status->dbs->ChangeFlagTable[SC_LJOSALFAR] |= SCB_NONE; + status->dbs->ChangeFlagTable[SC_MERMAID_LONGING] |= SCB_NONE; /* status->dbs->DisplayType Table [Ind/Hercules] */ status->dbs->DisplayType[SC_ALL_RIDING] = true; @@ -1052,6 +1056,8 @@ void initChangeTables(void) { status->dbs->DisplayType[SC_SUPER_STAR] = true; status->dbs->DisplayType[SC_STRANGELIGHTS] = true; status->dbs->DisplayType[SC_DECORATION_OF_MUSIC] = true; + status->dbs->DisplayType[SC_LJOSALFAR] = true; + status->dbs->DisplayType[SC_MERMAID_LONGING] = true; if( !battle_config.display_hallucination ) //Disable Hallucination. status->dbs->IconChangeTable[SC_ILLUSION] = SI_BLANK; |