# As with most scripts place above main and below materials#
# No credit neccesary as I know most people that know anything about scripts probraly could have easily created this#
#If you do want to give credit anyways simply SilverRain21 will do#

class Game_Party < Game_Unit
alias :increase_exp_and_steps :increase_steps
def increase_steps
increase_exp_and_steps
$game_party.members.each do |member|
member.gain_exp(1)
end
end
end