You've already forked Arcturus-Morningstar-Extended
mirror of
https://github.com/duckietm/Arcturus-Morningstar-Extended.git
synced 2026-06-19 15:06:19 +00:00
5e586d1093
The getCloneAccounts query had an operator-precedence bug: WHERE ip_register = ? OR ip_current = ? AND id != ? -- parsed as: WHERE ip_register = ? OR (ip_current = ? AND id != ?) So a user whose ip_register matched themselves would show up in their own clone list. Added parentheses: WHERE (ip_register = ? OR ip_current = ?) AND id != ? So please run the 006_HabboManager_fix before you run the update Emulator !