summaryrefslogtreecommitdiff
path: root/src/map/duel.c
diff options
context:
space:
mode:
authormomacabu <momacabu@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-10 21:27:05 +0000
committermomacabu <momacabu@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-10 21:27:05 +0000
commit363a6e4f4f3918cad1c607ed5ecf8cefb75f0423 (patch)
tree3980ffd54043a81f145c1719a91e6cf6e9fcc5a3 /src/map/duel.c
parent175ab2914e9fea4aa3cb7d831df1e43da91c2edd (diff)
downloadhercules-363a6e4f4f3918cad1c607ed5ecf8cefb75f0423.tar.gz
hercules-363a6e4f4f3918cad1c607ed5ecf8cefb75f0423.tar.bz2
hercules-363a6e4f4f3918cad1c607ed5ecf8cefb75f0423.tar.xz
hercules-363a6e4f4f3918cad1c607ed5ecf8cefb75f0423.zip
Voiding some functions.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16906 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/duel.c')
-rw-r--r--src/map/duel.c19
1 files changed, 6 insertions, 13 deletions
diff --git a/src/map/duel.c b/src/map/duel.c
index ac1297bd5..c13d004b0 100644
--- a/src/map/duel.c
+++ b/src/map/duel.c
@@ -28,7 +28,6 @@ void duel_savetime(struct map_session_data* sd)
t = localtime(&timer);
pc_setglobalreg(sd, "PC_LAST_DUEL_TIME", t->tm_mday*24*60 + t->tm_hour*60 + t->tm_min);
- return;
}
int duel_checktime(struct map_session_data* sd)
@@ -57,7 +56,7 @@ static int duel_showinfo_sub(struct map_session_data* sd, va_list va)
return 1;
}
-int duel_showinfo(const unsigned int did, struct map_session_data* sd)
+void duel_showinfo(const unsigned int did, struct map_session_data* sd)
{
int p=0;
char output[256];
@@ -76,7 +75,6 @@ int duel_showinfo(const unsigned int did, struct map_session_data* sd)
clif_disp_onlyself(sd, output, strlen(output));
map_foreachpc(duel_showinfo_sub, sd, &p);
- return 0;
}
int duel_create(struct map_session_data* sd, const unsigned int maxpl)
@@ -101,7 +99,7 @@ int duel_create(struct map_session_data* sd, const unsigned int maxpl)
return i;
}
-int duel_invite(const unsigned int did, struct map_session_data* sd, struct map_session_data* target_sd)
+void duel_invite(const unsigned int did, struct map_session_data* sd, struct map_session_data* target_sd)
{
char output[256];
@@ -115,7 +113,6 @@ int duel_invite(const unsigned int did, struct map_session_data* sd, struct map_
// "Blue -- Player %s invites you to PVP duel (@accept/@reject) --"
sprintf(output, msg_txt(374), sd->status.name);
clif_broadcast((struct block_list *)target_sd, output, strlen(output)+1, 0x10, SELF);
- return 0;
}
static int duel_leave_sub(struct map_session_data* sd, va_list va)
@@ -126,7 +123,7 @@ static int duel_leave_sub(struct map_session_data* sd, va_list va)
return 0;
}
-int duel_leave(const unsigned int did, struct map_session_data* sd)
+void duel_leave(const unsigned int did, struct map_session_data* sd)
{
char output[256];
@@ -144,10 +141,9 @@ int duel_leave(const unsigned int did, struct map_session_data* sd)
sd->duel_group = 0;
duel_savetime(sd);
clif_map_property(sd, MAPPROPERTY_NOTHING);
- return 0;
}
-int duel_accept(const unsigned int did, struct map_session_data* sd)
+void duel_accept(const unsigned int did, struct map_session_data* sd)
{
char output[256];
@@ -162,10 +158,9 @@ int duel_accept(const unsigned int did, struct map_session_data* sd)
clif_map_property(sd, MAPPROPERTY_FREEPVPZONE);
//clif_misceffect2(&sd->bl, 159);
- return 0;
}
-int duel_reject(const unsigned int did, struct map_session_data* sd)
+void duel_reject(const unsigned int did, struct map_session_data* sd)
{
char output[256];
@@ -175,15 +170,13 @@ int duel_reject(const unsigned int did, struct map_session_data* sd)
duel_list[did].invites_count--;
sd->duel_invite = 0;
- return 0;
}
void do_final_duel(void)
{
}
-int do_init_duel(void)
+void do_init_duel(void)
{
memset(&duel_list[0], 0, sizeof(duel_list));
- return 0;
}