mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Merge remote-tracking branch 'dev-origin/master'
This commit is contained in:
commit
6bd5246edd
2 changed files with 5 additions and 5 deletions
|
@ -3389,14 +3389,14 @@ thingtypes
|
|||
}
|
||||
118
|
||||
{
|
||||
title = "CastleBot FaceStabber";
|
||||
title = "Lance-a-Bot";
|
||||
sprite = "CBFSA1";
|
||||
width = 32;
|
||||
height = 72;
|
||||
}
|
||||
1113
|
||||
{
|
||||
title = "Suspicious FaceStabber Statue";
|
||||
title = "Suspicious Lance-a-Bot Statue";
|
||||
sprite = "CBBSA1";
|
||||
width = 32;
|
||||
height = 72;
|
||||
|
@ -5006,7 +5006,7 @@ thingtypes
|
|||
{
|
||||
arrow = 1;
|
||||
blocking = 2;
|
||||
title = "FaceStabber Statue";
|
||||
title = "Lance-a-Bot Statue";
|
||||
sprite = "CBBSA1";
|
||||
width = 32;
|
||||
height = 72;
|
||||
|
|
|
@ -1301,6 +1301,8 @@ static void SV_SendServerInfo(INT32 node, tic_t servertime)
|
|||
|
||||
M_Memcpy(netbuffer->u.serverinfo.mapmd5, mapmd5, 16);
|
||||
|
||||
memset(netbuffer->u.serverinfo.maptitle, 0, sizeof netbuffer->u.serverinfo.maptitle);
|
||||
|
||||
if (mapheaderinfo[gamemap-1] && *mapheaderinfo[gamemap-1]->lvlttl)
|
||||
{
|
||||
char *read = mapheaderinfo[gamemap-1]->lvlttl, *writ = netbuffer->u.serverinfo.maptitle;
|
||||
|
@ -1319,8 +1321,6 @@ static void SV_SendServerInfo(INT32 node, tic_t servertime)
|
|||
else
|
||||
strncpy(netbuffer->u.serverinfo.maptitle, "UNKNOWN", 32);
|
||||
|
||||
netbuffer->u.serverinfo.maptitle[32] = '\0';
|
||||
|
||||
if (mapheaderinfo[gamemap-1] && !(mapheaderinfo[gamemap-1]->levelflags & LF_NOZONE))
|
||||
netbuffer->u.serverinfo.iszone = 1;
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue