Closed Gusarich closed 3 months ago
The following house:
house Counter { global counter: int = 0; player counter: int = 0; handle JOIN { global.counter = global.counter + 1; player.counter = player.counter + 1; } }
Produce result with one of the actions being:
{ "kind": "CHANGE_PLAYER_STAT", "mode": "SET", "stat": "$$3", "value": "%stat.player/player.counter%", }
where %stat.player/player.counter% is definitely invalid stat placeholder in this case.
%stat.player/player.counter%
The following house:
Produce result with one of the actions being:
where
%stat.player/player.counter%
is definitely invalid stat placeholder in this case.