summaryrefslogtreecommitdiff
path: root/src/map/HPMmap.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-11-06 15:06:00 -0200
committershennetsind <ind@henn.et>2013-11-06 15:06:00 -0200
commit778facb21f822cea549939c8dbee886e1cd342aa (patch)
treefb4252f79ab8c25f38c94039cd0c60f54261f0c5 /src/map/HPMmap.c
parent4d860972e973b02a3a8b691206abd659f9651a21 (diff)
downloadhercules-778facb21f822cea549939c8dbee886e1cd342aa.tar.gz
hercules-778facb21f822cea549939c8dbee886e1cd342aa.tar.bz2
hercules-778facb21f822cea549939c8dbee886e1cd342aa.tar.xz
hercules-778facb21f822cea549939c8dbee886e1cd342aa.zip
Modified @command loading
So that HPM plugins are able to override default commands, thanks to Akkarin for bringing it up. Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/HPMmap.c')
-rw-r--r--src/map/HPMmap.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/map/HPMmap.c b/src/map/HPMmap.c
index ca4a7a2e8..8a69cba97 100644
--- a/src/map/HPMmap.c
+++ b/src/map/HPMmap.c
@@ -142,10 +142,7 @@ void HPM_map_atcommands(void) {
unsigned int i;
for(i = 0; i < atcommand_list_items; i++) {
- if( !atcommand->add(atcommand_list[i].name,atcommand_list[i].func) ) {
- ShowDebug("HPM_map_atcommands: duplicate command '%s', skipping...\n", atcommand_list[i].name);
- continue;
- }
+ atcommand->add(atcommand_list[i].name,atcommand_list[i].func,true);
}
}