From dc7f14c7dc9829061f8902354367bdc8467eb841 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Thu, 6 Jun 2013 21:01:07 -0300 Subject: HPM: Minor Update Made 'guild' interface available to plugins, added 'bc' in battle interface to link to map-server's battle config (special thanks to Shikazu!) Signed-off-by: shennetsind --- src/map/battle.c | 4 ++++ src/map/battle.h | 2 ++ src/map/map.c | 1 + 3 files changed, 7 insertions(+) diff --git a/src/map/battle.c b/src/map/battle.c index e78b98bdd..575c8ca59 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -6221,8 +6221,12 @@ void do_final_battle(void) { /* initialize the interface */ void battle_defaults(void) { battle = &battle_s; + + battle->bc = &battle_config; + battle->init = do_init_battle; battle->final = do_final_battle; + battle->calc_attack = battle_calc_attack; battle->calc_damage = battle_calc_damage; battle->calc_gvg_damage = battle_calc_gvg_damage; diff --git a/src/map/battle.h b/src/map/battle.h index 9d578d224..36796c516 100644 --- a/src/map/battle.h +++ b/src/map/battle.h @@ -463,6 +463,8 @@ extern int attr_fix_table[4][10][10]; * Battle.c Interface **/ struct battle_interface { + /* */ + struct Battle_Config *bc; /* init */ void (*init) (void); /* final */ diff --git a/src/map/map.c b/src/map/map.c index 927ad7970..00f7a2976 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -5303,6 +5303,7 @@ void map_hp_symbols(void) { HPM->share(atcommand,"atcommand"); HPM->share(buyingstore,"buyingstore"); HPM->share(clif,"clif"); + HPM->share(guild,"guild"); HPM->share(ircbot,"ircbot"); HPM->share(logs,"logs"); HPM->share(script,"script"); -- cgit v1.2.3-70-g09d2