I hope this is the right place to post, if not I'm sorry.
I'm new to Java and I've been having trouble calling a non-static method.
I want to call
public boolean updateSession() { setActivityState(SessionStates.END_STATE); return true; }
from
public boolean handle(Player player) { updateSession(); return true; }
but it wants me to make updateSession() static. Is there anything I can do to get around this?