Hello,
I wish to display a change in the HUD to all players. The way I do it is as follows:
- (Player Controller) something happens, executes custom event on server
- Server event calls multicast in Game State
- Multicast event gets the player’s HUD (game state has a ref to self’s game controller, which has a reference to the HUD), then calls event in HUD
- All players get the change except the listen server host, which says it has an invalid HUD
From my understanding, this is expected, since the listen server host is actually running two instances, one as a client, which should succeed, and one as a server, which forbids HUD creation and therefore would not have one.
The issue is that the host’s client does not seem to have a valid HUD either.
The reference seems to work outside of multicast, no idea what is going on.
