@LegendaryAlpha The problem is because you are putting the list in the while loop and in the function. So even if you append anything to the list, it resets it back to the original. Put the list outside the function and globalize it in the search() function.
PS: Sry for the accusations of the alt accounts....
@LegendaryAlpha The problem is because you are putting the list in the while loop and in the function. So even if you append anything to the list, it resets it back to the original. Put the list outside the function and globalize it in the
search()
function.