diff options
author | Matheus Macabu <mkbu95@gmail.com> | 2013-06-15 17:23:31 -0300 |
---|---|---|
committer | Matheus Macabu <mkbu95@gmail.com> | 2013-06-15 17:23:31 -0300 |
commit | 8568f179f5cefa638d564b75119235bac4b9a3b3 (patch) | |
tree | 1bd5516f7dd21e5907f2d75ff4781bea0ad649f1 /src/map/map.c | |
parent | 9055b9c84bb915cbf29207484fef80550a88bf74 (diff) | |
download | hercules-8568f179f5cefa638d564b75119235bac4b9a3b3.tar.gz hercules-8568f179f5cefa638d564b75119235bac4b9a3b3.tar.bz2 hercules-8568f179f5cefa638d564b75119235bac4b9a3b3.tar.xz hercules-8568f179f5cefa638d564b75119235bac4b9a3b3.zip |
Sending whisper to a player from an admin account (group 99 [is this right?]) will display the message as a self announce to player. (done a todo)
Also added trade interface properly for HPM, forgot that.
Signed-off-by: Matheus Macabu <mkbu95@gmail.com>
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/map.c b/src/map/map.c index d74263d1a..5f86286e9 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -5246,6 +5246,7 @@ void map_hp_symbols(void) { HPM->share(vending,"vending"); HPM->share(pc,"pc"); HPM->share(party,"party"); + HPM->share(trade,"trade"); HPM->share(iMap,"iMap"); /* partial */ HPM->share(mapit,"mapit"); @@ -5278,6 +5279,7 @@ void load_defaults(void) { vending_defaults(); pc_defaults(); party_defaults(); + trade_defaults(); } int do_init(int argc, char *argv[]) { |