ethanmoffat / EndlessClient

An open source client for Endless Online written in C#
MIT License
34 stars 16 forks source link

EOBot password is forced to lowercase #236

Closed gmardari closed 1 year ago

gmardari commented 1 year ago

This can produce the wrong password and hence make the login fail. The issue is solved in the ArgumentParser class where arg:ToLower() is removed. Possible fix: in switch statement, do pair[0]:ToLower(), and then in password case do password = pair[1]

ethanmoffat commented 1 year ago

Yep, that's definitely a bug. Feel free to submit a PR for it