Cleaned up leftover PACKETVER define on the charserver (followup to r14155).

Expanded the error message in guild_castledataloadack() to actually provide some useful info.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14168 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage 2009-11-24 23:40:42 +00:00
parent ada5a13abe
commit e3300232a5
4 changed files with 2 additions and 13 deletions

View File

@ -16,12 +16,6 @@ struct character_data {
struct global_reg global[GLOBAL_REG_NUM]; struct global_reg global[GLOBAL_REG_NUM];
}; };
// server->client protocol version
// 20061023 - 2006-10-23aSakexe+ - 0x6b, 0x6d
#ifndef PACKETVER
#define PACKETVER 20061023
#endif
struct mmo_charstatus* search_character(int aid, int cid); struct mmo_charstatus* search_character(int aid, int cid);
struct mmo_charstatus* search_character_byname(char* character_name); struct mmo_charstatus* search_character_byname(char* character_name);
int search_character_index(char* character_name); int search_character_index(char* character_name);

View File

@ -17,12 +17,6 @@ enum {
TABLE_GUILD_STORAGE, TABLE_GUILD_STORAGE,
}; };
// server->client protocol version
// 20061023 - 2006-10-23aSakexe+ - 0x6b, 0x6d
#ifndef PACKETVER
#define PACKETVER 20061023
#endif
int memitemdata_to_sql(const struct item items[], int max, int id, int tableswitch); int memitemdata_to_sql(const struct item items[], int max, int id, int tableswitch);
int mapif_sendall(unsigned char *buf,unsigned int len); int mapif_sendall(unsigned char *buf,unsigned int len);

View File

@ -16,6 +16,7 @@
// 5 - 2003-12-18aSakexe+ - 0x1ee, 0x1ef, 0x1f0, ?0x1c4, 0x1c5? // 5 - 2003-12-18aSakexe+ - 0x1ee, 0x1ef, 0x1f0, ?0x1c4, 0x1c5?
// 6 - 2004-03-02aSakexe+ - 0x1f4, 0x1f5 // 6 - 2004-03-02aSakexe+ - 0x1f4, 0x1f5
// 7 - 2005-04-11aSakexe+ - 0x229, 0x22a, 0x22b, 0x22c // 7 - 2005-04-11aSakexe+ - 0x229, 0x22a, 0x22b, 0x22c
// 20061023 - 2006-10-23aSakexe+ - 0x6b, 0x6d
// 20070521 - 2007-05-21aSakexe+ - 0x283 // 20070521 - 2007-05-21aSakexe+ - 0x283
// 20070821 - 2007-08-21aSakexe+ - 0x2c5 // 20070821 - 2007-08-21aSakexe+ - 0x2c5
// 20070918 - 2007-09-18aSakexe+ - 0x2d7, 0x2d9, 0x2da // 20070918 - 2007-09-18aSakexe+ - 0x2d7, 0x2d9, 0x2da

View File

@ -1771,7 +1771,7 @@ int guild_castledataloadack(int castle_id,int index,int value)
case 17: case 17:
gc->guardian[index-10].visible = value; break; gc->guardian[index-10].visible = value; break;
default: default:
ShowError("guild_castledataloadack ERROR!! (Not found index=%d)\n", index); ShowError("guild_castledataloadack ERROR!! (Not found castle_id=%d index=%d)\n", castle_id, index);
return 0; return 0;
} }