summaryrefslogtreecommitdiff
path: root/src/map/clif.hpp
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2012-11-30 15:43:12 -0800
committerBen Longbons <b.r.longbons@gmail.com>2012-12-05 15:02:46 -0800
commit266f7b4ac45f546e55774ccba57b0ed2525d1eb2 (patch)
treeb865e1800a243348559529c3c71c845153d0ce13 /src/map/clif.hpp
parent0ea504c7b77c7d2e3efabc4678fcd396fbeec083 (diff)
downloadtmwa-266f7b4ac45f546e55774ccba57b0ed2525d1eb2.tar.gz
tmwa-266f7b4ac45f546e55774ccba57b0ed2525d1eb2.tar.bz2
tmwa-266f7b4ac45f546e55774ccba57b0ed2525d1eb2.tar.xz
tmwa-266f7b4ac45f546e55774ccba57b0ed2525d1eb2.zip
Change some unused int returns to void
Also clean up a little formatting in script.cpp This is what passes for "minimally invasive" in tmwa ...
Diffstat (limited to 'src/map/clif.hpp')
-rw-r--r--src/map/clif.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/clif.hpp b/src/map/clif.hpp
index 01f6a50..f4bc40b 100644
--- a/src/map/clif.hpp
+++ b/src/map/clif.hpp
@@ -121,10 +121,10 @@ int clif_guildstorageitemadded (struct map_session_data *sd,
struct guild_storage *stor, int index,
int amount);
-int clif_pcinsight (struct block_list *, va_list); // map_forallinmovearea callback
-int clif_pcoutsight (struct block_list *, va_list); // map_forallinmovearea callback
-int clif_mobinsight (struct block_list *, va_list); // map_forallinmovearea callback
-int clif_moboutsight (struct block_list *, va_list); // map_forallinmovearea callback
+void clif_pcinsight (struct block_list *, va_list); // map_forallinmovearea callback
+void clif_pcoutsight (struct block_list *, va_list); // map_forallinmovearea callback
+void clif_mobinsight (struct block_list *, va_list); // map_forallinmovearea callback
+void clif_moboutsight (struct block_list *, va_list); // map_forallinmovearea callback
int clif_npc_class_change (struct block_list *bl, int npc_class, int type);
int clif_mob_class_change (struct mob_data *md, int mob_class);