mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-26 08:50:55 +00:00
Multiplayer suicide message was empty string (#170)
# Conflicts: # .gitignore
This commit is contained in:
parent
81f78c24b7
commit
160c93f0ab
3 changed files with 6 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -57,6 +57,7 @@ project.xcworkspace/
|
||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
._*
|
._*
|
||||||
|
/autoload
|
||||||
/movie
|
/movie
|
||||||
/blud*.png
|
/blud*.png
|
||||||
/*.DEM
|
/*.DEM
|
||||||
|
|
|
@ -2033,6 +2033,10 @@ void playerFrag(PLAYER *pKiller, PLAYER *pVictim)
|
||||||
if (gGameOptions.nGameType > 0 && nSound >= 0)
|
if (gGameOptions.nGameType > 0 && nSound >= 0)
|
||||||
sndStartSample(nSound, 255, 2, 0);
|
sndStartSample(nSound, 255, 2, 0);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sprintf(buffer, gSuicide[nMessage].at0, gProfile[nVictim].name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue