MantisBT - Zandronum
View Issue Details
0003027Zandronum[All Projects] Bugpublic2017-03-01 04:172017-03-02 21:48
jdagenet 
 
immediatemajoralways
closedinvalid 
MicrosoftWindows10
3.0-beta 
 
0003027: RandomSpawners do not work online
Title says it all.
Host an online server with the wad I've attached and summon "BonusCluster" -- nothing will happen.

Try it out offline and you'll see it works as intended.
Supposedly this has been broken for a long time, though I'm surprised it has gone unnoticed for so long.
No tags attached.
? randomspawnerexample.wad (371) 2017-03-01 04:17
/tracker/file_download.php?file_id=2034&type=bug
Issue History
2017-03-01 04:17jdagenetNew Issue
2017-03-01 04:17jdagenetFile Added: randomspawnerexample.wad
2017-03-01 23:14IvanNote Added: 0016922
2017-03-02 19:51Torr SamahoNote Added: 0016924
2017-03-02 21:48DuskStatusnew => closed
2017-03-02 21:48DuskResolutionopen => invalid

Notes
(0016922)
Ivan   
2017-03-01 23:14   
You are trying to spawn items that can affect the server from a clientside actor...
(0016924)
Torr Samaho   
2017-03-02 19:51   
Ivan is right. You are incorrectly using CLIENTSIDEONLY. Since BonusCluster is CLIENTSIDEONLY, the server will not spawn RandomBonusCluster and the client is now allowed to spawn HealthBonus or ArmorBonus:

+ - Added new DECORATE actor flag CLIENTSIDEONLY. The server doesn't spawn such actors, the clients spawn them on their own. Therefore, they never should need any network bandwidth. Only use it on actors that don't affect the game in any way (visuals aside) and only use it, if you know what you are doing! [Torr Samaho]