diff options
author | Shido <the.keikun@gmail.com> | 2014-05-16 21:42:25 +0800 |
---|---|---|
committer | Shido <the.keikun@gmail.com> | 2014-05-17 01:13:23 +0800 |
commit | 5f5380e8d5fa2e6042813e35101cb33b656e3972 (patch) | |
tree | 76612807cd798428d6b199a5de02f42e518fdfab /src/map/intif.c | |
parent | bc1d286cc71a7ae82d9639f4a832970a287c0d71 (diff) | |
download | hercules-5f5380e8d5fa2e6042813e35101cb33b656e3972.tar.gz hercules-5f5380e8d5fa2e6042813e35101cb33b656e3972.tar.bz2 hercules-5f5380e8d5fa2e6042813e35101cb33b656e3972.tar.xz hercules-5f5380e8d5fa2e6042813e35101cb33b656e3972.zip |
Renamed incuvate of Pet System.
Diffstat (limited to 'src/map/intif.c')
-rw-r--r-- | src/map/intif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index 75379f6c0..042896f4f 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -50,7 +50,7 @@ int CheckForCharServer(void) // pet int intif_create_pet(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 incuvate,char *pet_name) + short pet_equip,short intimate,short hungry,char rename_flag,char incubate,char *pet_name) { if (intif->CheckForCharServer()) return 0; @@ -65,7 +65,7 @@ int intif_create_pet(int account_id,int char_id,short pet_class,short pet_lv,sho WFIFOW(inter_fd,18) = intimate; WFIFOW(inter_fd,20) = hungry; WFIFOB(inter_fd,22) = rename_flag; - WFIFOB(inter_fd,23) = incuvate; + WFIFOB(inter_fd,23) = incubate; memcpy(WFIFOP(inter_fd,24),pet_name,NAME_LENGTH); WFIFOSET(inter_fd,24+NAME_LENGTH); |