Client: when an unknown network event is received, error out with a message.

This commit is contained in:
Marco Cawthorne 2023-04-19 15:21:04 -07:00
parent cbf78aa26a
commit f00d49e6ca
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 1 additions and 1 deletions

View File

@ -197,6 +197,6 @@ Event_Parse(float type)
BreakModel_Receive();
break;
default:
error("event not recognized. abort immediately.\n");
error(sprintf("event id %d not recognized. abort immediately.\n", type));
}
}