Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/map/clif.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18970,6 +18970,7 @@ void clif_party_show_picker( const map_session_data* sd, const item* item_data )
*/
void clif_displayexp( const map_session_data* sd, t_exp exp, char type, bool quest, bool lost )
{
#if PACKETVER >= 20091027
int32 fd;
int32 offset;
#if PACKETVER >= 20170830
Expand All @@ -18995,6 +18996,7 @@ void clif_displayexp( const map_session_data* sd, t_exp exp, char type, bool que
WFIFOW(fd,10+offset) = type;
WFIFOW(fd,12+offset) = (quest && type != SP_JOBEXP) ? 1 : 0; // NOTE: Somehow JobEXP always in yellow color
WFIFOSET(fd,packet_len(cmd));
#endif
}


Expand Down
2 changes: 1 addition & 1 deletion src/map/packets_struct.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3975,7 +3975,7 @@ struct PACKET_ZC_USESKILL_ACK {
uint8 disposable;
} __attribute__((packed));
DEFINE_PACKET_HEADER(ZC_USESKILL_ACK, 0x07fb);
#elif PACKETVER_MAIN_NUM >= 20090406 || PACKETVER_SAK_NUM >= 20080618 || PACKETVER_RE_NUM >= 20080827 || defined(PACKETVER_ZERO)
#else
struct PACKET_ZC_USESKILL_ACK {
int16 packetType;
uint32 srcId;
Expand Down
Loading