summaryrefslogtreecommitdiff
path: root/src/map/status.h
diff options
context:
space:
mode:
authorGuilherme Menaldo <guilherme.menaldo@outlook.com>2019-10-05 18:59:25 -0300
committerGuilherme Menaldo <guilherme.menaldo@outlook.com>2019-10-06 21:54:53 -0300
commit2ce755870486262f8d147565f8df70ec608a3974 (patch)
tree77e2661d7d3141789722bf13ca3f4c5fd904531a /src/map/status.h
parent6766e7327eae2d37dcd719528fc1155938800fcc (diff)
downloadhercules-2ce755870486262f8d147565f8df70ec608a3974.tar.gz
hercules-2ce755870486262f8d147565f8df70ec608a3974.tar.bz2
hercules-2ce755870486262f8d147565f8df70ec608a3974.tar.xz
hercules-2ce755870486262f8d147565f8df70ec608a3974.zip
Updates status changes to also keep their total time
- This allows clients to continue the "timer" display after you login again
Diffstat (limited to 'src/map/status.h')
-rw-r--r--src/map/status.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/status.h b/src/map/status.h
index 67cc3b3b4..e2280e409 100644
--- a/src/map/status.h
+++ b/src/map/status.h
@@ -2138,6 +2138,7 @@ struct sc_display_entry {
struct status_change_entry {
int timer;
+ int total_tick;
int val1,val2,val3,val4;
bool infinite_duration;
};
@@ -2305,7 +2306,8 @@ struct status_interface {
int (*isdead) (struct block_list *bl);
int (*isimmune) (struct block_list *bl);
int (*get_sc_def) (struct block_list *src, struct block_list *bl, enum sc_type type, int rate, int tick, int flag);
- int (*change_start) (struct block_list *src, struct block_list *bl, enum sc_type type, int rate, int val1, int val2, int val3, int val4, int total_tick, int flag);
+ int (*change_start) (struct block_list *src, struct block_list *bl, enum sc_type type, int rate, int val1, int val2, int val3, int val4, int tick, int flag);
+ int (*change_start_sub) (struct block_list *src, struct block_list *bl, enum sc_type type, int rate, int val1, int val2, int val3, int val4, int tick, int total_tick, int flag);
int (*change_end_) (struct block_list* bl, enum sc_type type, int tid, const char* file, int line);
bool (*is_immune_to_status) (struct status_change* sc, enum sc_type type);
bool (*is_boss_resist_sc) (enum sc_type type);