adventureland
adventureland copied to clipboard
fix early return when checking aggro diffs
when checking aggro diff, a "regular" for loop iterating over players is nested in a .forEach loop iterating over map_def
s and a return was used in the regular for loop which stops after the first player.
if the next player would be raged upon, the monster wouldn't rage because of the return.
updating the return to a continue moves to the next player for rage checking.