summaryrefslogtreecommitdiff
path: root/src/char/mapif.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2018-06-25 00:36:54 +0200
committerHaru <haru@dotalux.com>2018-06-30 01:51:11 +0200
commit4bcd46503481e616214fd40424ea63adf9352db8 (patch)
tree53b6486fcb5edaae7bb363f100a433068604ae6d /src/char/mapif.c
parent409c8a7348f9141a40ec0161d1e5715088516fd8 (diff)
downloadhercules-4bcd46503481e616214fd40424ea63adf9352db8.tar.gz
hercules-4bcd46503481e616214fd40424ea63adf9352db8.tar.bz2
hercules-4bcd46503481e616214fd40424ea63adf9352db8.tar.xz
hercules-4bcd46503481e616214fd40424ea63adf9352db8.zip
Move some non-mapif functionality from the mapif interface to the inter_pet interface
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/char/mapif.c')
-rw-r--r--src/char/mapif.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/char/mapif.c b/src/char/mapif.c
index 470d71126..e2956af01 100644
--- a/src/char/mapif.c
+++ b/src/char/mapif.c
@@ -1421,9 +1421,6 @@ int mapif_pet_info(int fd, int account_id, struct s_pet *p);
int mapif_pet_noinfo(int fd, int account_id);
int mapif_save_pet_ack(int fd, int account_id, int flag);
int mapif_delete_pet_ack(int fd, int flag);
-int mapif_create_pet(int fd, int account_id, int char_id, short pet_class, short pet_lv, short pet_egg_id,
- short pet_equip, short intimate, short hungry, char rename_flag, char incubate, const char *pet_name);
-int mapif_load_pet(int fd, int account_id, int char_id, int pet_id);
int mapif_save_pet(int fd, int account_id, const struct s_pet *data);
int mapif_delete_pet(int fd, int pet_id);
int mapif_parse_CreatePet(int fd);
@@ -1624,8 +1621,6 @@ void mapif_defaults(void) {
mapif->pet_noinfo = mapif_pet_noinfo;
mapif->save_pet_ack = mapif_save_pet_ack;
mapif->delete_pet_ack = mapif_delete_pet_ack;
- mapif->create_pet = mapif_create_pet;
- mapif->load_pet = mapif_load_pet;
mapif->save_pet = mapif_save_pet;
mapif->delete_pet = mapif_delete_pet;
mapif->parse_CreatePet = mapif_parse_CreatePet;