diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-04-24 09:37:08 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-04-24 09:37:08 +0000 |
commit | 75e90443fb9402967c1675131e15eb8d147ab2e8 (patch) | |
tree | 307b9810f4ab62ea8d33da003609a12e162992cf /src/map/status.c | |
parent | 092c12d31a3787620fceedc2a6d032eacde14788 (diff) | |
download | hercules-75e90443fb9402967c1675131e15eb8d147ab2e8.tar.gz hercules-75e90443fb9402967c1675131e15eb8d147ab2e8.tar.bz2 hercules-75e90443fb9402967c1675131e15eb8d147ab2e8.tar.xz hercules-75e90443fb9402967c1675131e15eb8d147ab2e8.zip |
Renamed Happy Break's status name from SC_TKREST to SC_EARTHSCROLL, since that's its official purpose and it doesn't do anything else.
Also removed the associated SI_TKREST since this status doesn't actually have an icon.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13695 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/status.c b/src/map/status.c index f7c10872d..6c1a1029e 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -318,7 +318,7 @@ void initChangeTables(void) set_sc( TK_READYTURN , SC_READYTURN , SI_READYTURN , SCB_NONE ); set_sc( TK_READYCOUNTER , SC_READYCOUNTER , SI_READYCOUNTER , SCB_NONE ); set_sc( TK_DODGE , SC_DODGE , SI_DODGE , SCB_NONE ); - set_sc( TK_SPTIME , SC_TKREST , SI_TKREST , SCB_NONE ); + add_sc( TK_SPTIME , SC_EARTHSCROLL ); add_sc( TK_SEVENWIND , SC_SEVENWIND ); set_sc( TK_SEVENWIND , SC_GHOSTWEAPON , SI_GHOSTWEAPON , SCB_ATK_ELE ); set_sc( TK_SEVENWIND , SC_SHADOWWEAPON , SI_SHADOWWEAPON , SCB_ATK_ELE ); @@ -5772,7 +5772,7 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val val4 = tick; //Store combo-time in val4. } break; - case SC_TKREST: + case SC_EARTHSCROLL: val2 = 11-val1; //Chance to consume: 11-skilllv% break; case SC_RUN: @@ -6328,7 +6328,7 @@ int status_change_clear(struct block_list* bl, int type) case SC_SUMMER: case SC_NOCHAT: case SC_FUSION: - case SC_TKREST: + case SC_EARTHSCROLL: case SC_READYSTORM: case SC_READYDOWN: case SC_READYCOUNTER: |