game: fixed wrong usage of batch events (related to #10870)

This commit is contained in:
Oleg Agafonov 2023-09-13 04:42:46 +04:00
parent ba3b0e4cb7
commit be4bff6097
6 changed files with 64 additions and 8 deletions

View file

@ -593,6 +593,11 @@ public class GameEvent implements Serializable {
return id;
}
/**
* Some batch events can contain multiple events list, see BatchGameEvent for usage
*
* @return
*/
public UUID getTargetId() {
return targetId;
}