summaryrefslogtreecommitdiff
path: root/src/plugins/sample.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/sample.c')
-rw-r--r--src/plugins/sample.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/sample.c b/src/plugins/sample.c
index 750ab31f9..819aae08c 100644
--- a/src/plugins/sample.c
+++ b/src/plugins/sample.c
@@ -13,6 +13,7 @@
#include "../map/script.h"
#include "../map/pc.h"
#include "../map/clif.h"
+#include "../common/strlib.h"
#include "../common/HPMDataCheck.h" /* should always be the last file included! (if you don't make it last, it'll intentionally break compile time) */
@@ -106,7 +107,7 @@ int my_pc_dropitem_post(int retVal, struct map_session_data *sd,int *n,int *amou
if( retVal != 1 ) return retVal;/* we don't do anything if pc_dropitem didn't return 1 (success) */
if( my_pc_dropitem_storage ) {/* signs whether pre-hook did this */
char output[99];
- snprintf(output,99,"[ Warning ] you can only drop 1 item at a time, capped from %d to 1",my_pc_dropitem_storage);
+ safesnprintf(output,99,"[ Warning ] you can only drop 1 item at a time, capped from %d to 1",my_pc_dropitem_storage);
clif->colormes(sd->fd,COLOR_RED,output);
}
return 1;
@@ -131,6 +132,7 @@ HPExport void plugin_init (void) {
script = GET_SYMBOL("script");
clif = GET_SYMBOL("clif");
pc = GET_SYMBOL("pc");
+ strlib = GET_SYMBOL("strlib");
/* session[] */
session = GET_SYMBOL("session");