summaryrefslogtreecommitdiff
path: root/src/map/intif.c
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-12 09:41:51 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-12 09:41:51 +0000
commit1c5fab35e935b870939bcae24ea95e957ed76d5a (patch)
treed139ebbdd15d78fbfc4835da6074168c378a0e1c /src/map/intif.c
parent76c1280eedaf3327eb15af0290ab7781ff703633 (diff)
downloadhercules-1c5fab35e935b870939bcae24ea95e957ed76d5a.tar.gz
hercules-1c5fab35e935b870939bcae24ea95e957ed76d5a.tar.bz2
hercules-1c5fab35e935b870939bcae24ea95e957ed76d5a.tar.xz
hercules-1c5fab35e935b870939bcae24ea95e957ed76d5a.zip
Removed the badly designed/unfinished guild_check_conflict() data integrity check (that wasn't actually being used up 'till now).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11894 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/intif.c')
-rw-r--r--src/map/intif.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/map/intif.c b/src/map/intif.c
index 72766c471..5c8cfc9a0 100644
--- a/src/map/intif.c
+++ b/src/map/intif.c
@@ -638,19 +638,6 @@ int intif_guild_message(int guild_id,int account_id,const char *mes,int len)
return 0;
}
-// ギルド競合チェック要求
-int intif_guild_checkconflict(int guild_id,int account_id,int char_id)
-{
- if (CheckForCharServer())
- return 0;
- WFIFOHEAD(inter_fd, 14);
- WFIFOW(inter_fd, 0)=0x3038;
- WFIFOL(inter_fd, 2)=guild_id;
- WFIFOL(inter_fd, 6)=account_id;
- WFIFOL(inter_fd,10)=char_id;
- WFIFOSET(inter_fd,14);
- return 0;
-}
// ギルド基本情報変更要求
int intif_guild_change_basicinfo(int guild_id,int type,const void *data,int len)
{