null check syncButton on CLAN_SETTINGS_INFO_PAGE_WIDGET
use clientThread for invoking
I think this is the only places where it could error, i couldn't get another java.lang.IllegalStateException: must be called on client thread infact i only ever got a NPE on syncButton being null. I did not get the complaint about which thread did the invoke, but only instances of clientThread.invoke are used now rather than generically doing a runnable IE this::syncMembers or () -> SyncMembers(false) so it should get less errors now.
null check syncButton on CLAN_SETTINGS_INFO_PAGE_WIDGET use clientThread for invoking
I think this is the only places where it could error, i couldn't get another
java.lang.IllegalStateException: must be called on client thread
infact i only ever got a NPE on syncButton being null. I did not get the complaint about which thread did the invoke, but only instances of clientThread.invoke are used now rather than generically doing a runnable IEthis::syncMembers
or() -> SyncMembers(false)
so it should get less errors now.