made "netevent cannot be used outside of a map" message a warning

This commit is contained in:
Alexander 2019-05-18 15:35:05 +07:00 committed by Christoph Oelckers
parent 7540de4027
commit c1dbaa7d4b

View file

@ -1251,7 +1251,7 @@ CCMD(netevent)
{ {
if (gamestate != GS_LEVEL/* && gamestate != GS_TITLELEVEL*/) // not sure if this should work in title level, but probably not, because this is for actual playing if (gamestate != GS_LEVEL/* && gamestate != GS_TITLELEVEL*/) // not sure if this should work in title level, but probably not, because this is for actual playing
{ {
Printf("netevent cannot be used outside of a map.\n"); DPrintf(DMSG_SPAMMY, "netevent cannot be used outside of a map.\n");
return; return;
} }