mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-01 17:38:41 +00:00
Fix uninitialized variable Server::m_next_sound_id
This commit is contained in:
parent
0ea843bbdb
commit
f8bd1f3563
1 changed files with 2 additions and 1 deletions
|
@ -194,7 +194,8 @@ Server::Server(
|
|||
m_clients(&m_con),
|
||||
m_shutdown_requested(false),
|
||||
m_ignore_map_edit_events(false),
|
||||
m_ignore_map_edit_events_peer_id(0)
|
||||
m_ignore_map_edit_events_peer_id(0),
|
||||
m_next_sound_id(0)
|
||||
|
||||
{
|
||||
m_liquid_transform_timer = 0.0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue