Implement achievements properly

This commit is contained in:
Melledy
2025-11-29 00:29:04 -08:00
parent 898e8dd43f
commit f53bdaba32
44 changed files with 818 additions and 115 deletions

View File

@@ -249,4 +249,15 @@ public class GameSession {
return proto;
}
// Misc network
/**
* Called AFTER a response is sent to the client
*/
public void afterResponse() {
if (this.getPlayer() != null) {
this.getPlayer().afterResponse();
}
}
}