Kromster80 / kam_remake

"KaM Remake" is an RTS game remake written in Delphi from scratch.
http://www.kamremake.com
GNU Affero General Public License v3.0
361 stars 90 forks source link

mk_FPS can be sent to other players only, no need to send it to ourselfs #394

Closed reyandme closed 7 years ago

reyandme commented 7 years ago

This packet is sent every second, we can save bit of network traffic then

lewinjh commented 7 years ago

Good idea. You might want to add this line after setting our local FPS: if Assigned(fOnPingInfo) then fOnPingInfo(Self);

Otherwise it will not be updated in the GUI.

reyandme commented 7 years ago

Yep, sure