guild_cache
git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/stable@619 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
all: char-server_sql
|
||||
sql: char-server_sql
|
||||
|
||||
COMMON_OBJ = ../common/core.o ../common/socket.o ../common/timer.o ../common/db.o ../common/malloc.o ../common/showmsg.o
|
||||
COMMON_H = ../common/core.h ../common/socket.h ../common/timer.h ../common/db.h ../common/malloc.h ../common/showmsg.h
|
||||
COMMON_OBJ = ../common/core.o ../common/socket.o ../common/timer.o ../common/db.o ../common/malloc.o ../common/showmsg.o ../common/utils.o
|
||||
COMMON_H = ../common/core.h ../common/socket.h ../common/timer.h ../common/db.h ../common/malloc.h ../common/showmsg.h ../common/utils.h
|
||||
|
||||
char-server_sql: char.o inter.o int_party.o int_guild.o int_storage.o int_pet.o strlib.o itemdb.o $(COMMON_OBJ)
|
||||
$(CC) -o ../../$@ $^ $(LIB_S)
|
||||
|
||||
|
||||
char.o: char.c char.h strlib.h itemdb.h ../common/showmsg.h
|
||||
inter.o: inter.c inter.h int_party.h int_guild.h int_storage.h int_pet.h ../common/mmo.h char.h ../common/socket.h ../common/showmsg.h
|
||||
int_party.o: int_party.c int_party.h inter.h ../common/mmo.h char.h ../common/socket.h ../common/timer.h ../common/db.h ../common/showmsg.h
|
||||
@@ -15,6 +16,7 @@ int_storage.o: int_storage.c int_storage.h char.h itemdb.h ../common/showmsg.h
|
||||
int_pet.o: int_pet.c int_pet.h inter.h char.h ../common/mmo.h ../common/socket.h ../common/db.h ../common/showmsg.h
|
||||
strlib.o: strlib.c strlib.h ../common/showmsg.h
|
||||
itemdb.o: itemdb.c itemdb.h ../common/db.h ../common/mmo.h ../common/showmsg.h
|
||||
$(COMMON_OBJ): $(COMMON_H)
|
||||
|
||||
clean:
|
||||
rm -f *.o ../../char-server_sql
|
||||
|
||||
@@ -958,7 +958,7 @@ int mmo_char_fromsql(int char_id, struct mmo_charstatus *p, int online){
|
||||
|
||||
for(i=0;i<20;i++) {
|
||||
p->friend_id[i] = 0;
|
||||
sprintf(p->friend_name[i], "");
|
||||
p->friend_name[i][0] = '\0';
|
||||
}
|
||||
|
||||
tmp_p += sprintf(tmp_p, "SELECT `id`, `account_id`");
|
||||
|
||||
@@ -3,6 +3,10 @@
|
||||
// SQL conversion by hack
|
||||
//
|
||||
|
||||
#ifdef TWILIGHT
|
||||
#define GUILDCACHE
|
||||
#endif
|
||||
|
||||
#include "char.h"
|
||||
#include "strlib.h"
|
||||
#include "int_storage.h"
|
||||
|
||||
Reference in New Issue
Block a user