Skip to content

Commit

Permalink
Added correct Swift Learner perk bonus to give_xp message
Browse files Browse the repository at this point in the history
  • Loading branch information
NovaRain committed Mar 28, 2024
1 parent 275ecfd commit e6e0c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts_src/headers/exppoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,6 @@
points he received.
***************************************/
#define give_xp(x) give_exp_points(x); \
display_msg(message_str(SCRIPT_GENERIC,100)+x+message_str(SCRIPT_GENERIC,101))
display_msg(g_mstr(100) + (x + ((x * 5 / 100) * dude_perk(PERK_swift_learner))) + g_mstr(101))

#endif // EXPPOINT_H

0 comments on commit e6e0c0c

Please sign in to comment.