mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
commit
7979d4ed41
3 changed files with 4 additions and 4 deletions
|
@ -145,7 +145,7 @@ public class GameController implements GameCallback {
|
||||||
public void cleanUp() {
|
public void cleanUp() {
|
||||||
cancelTimeout();
|
cancelTimeout();
|
||||||
for (GameSessionPlayer gameSessionPlayer : gameSessions.values()) {
|
for (GameSessionPlayer gameSessionPlayer : gameSessions.values()) {
|
||||||
gameSessionPlayer.CleanUp();
|
gameSessionPlayer.cleanUp();
|
||||||
}
|
}
|
||||||
ChatManager.getInstance().destroyChatSession(chatId);
|
ChatManager.getInstance().destroyChatSession(chatId);
|
||||||
for (PriorityTimer priorityTimer : timers.values()) {
|
for (PriorityTimer priorityTimer : timers.values()) {
|
||||||
|
|
|
@ -74,8 +74,8 @@ public class GameSessionPlayer extends GameSessionWatcher {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void CleanUp() {
|
public void cleanUp() {
|
||||||
super.CleanUp();
|
super.cleanUp();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ask(final String question, final Map<String, Serializable> options) {
|
public void ask(final String question, final Map<String, Serializable> options) {
|
||||||
|
|
|
@ -114,7 +114,7 @@ public class GameSessionWatcher {
|
||||||
* Cleanup if Session ends
|
* Cleanup if Session ends
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public void CleanUp() {
|
public void cleanUp() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue