May I suggest that you add automatic quick turns? This prevents the unusual half-circle that Mario sometimes does after landing or ground pounding. To add it, all you need to do is paste this code into the mario_update function.
if m.action == ACT_WALKING
and analog_stick_held_back(m) ~= 0
and m.forwardVel > 0
and m.forwardVel < 16
and m.input & INPUT_NONZERO_ANALOG ~= 0 then
m.faceAngle.y = m.intendedYaw
end