コミットメタ情報

リビジョンb047fbff4d491674aab371ae141b2fc41e197ca4 (tree)
日時2016-06-16 21:25:48
作者Edoardo Prezioso <edo88@emai...>
コミッターEdoardo Prezioso

ログメッセージ

- Fixed: When a player carrying the white flag died or disconnected, the white flag was spawned on the floor instead of the actual Z position of the player (fixes 2757).

変更サマリ

差分

diff -r 9c10cab2a45e -r b047fbff4d49 docs/zandronum-history.txt
--- a/docs/zandronum-history.txt Sat Jun 04 22:09:48 2016 +0300
+++ b/docs/zandronum-history.txt Thu Jun 16 14:25:48 2016 +0200
@@ -46,6 +46,7 @@
4646 - - Fixed: sv_forcegldefaults 1 didn't honor the MAPINFO lightmode option if present. [Edward-san]
4747 - - Fixed: Invisible and translucent map things lost their visual effect on map restarts. [Edward-san]
4848 - - Fixed: Boom-style generic ceilings did not cause texture changes properly online. [Dusk]
49+- - Fixed: When a player carrying the white flag died or disconnected, the white flag was spawned on the floor instead of the actual Z position of the player. [Edward-san]
4950 + - The authentication mechanism for non-map related lumps now allows Freedoom 0.10/Doom clients to join Doom/Freedoom 0.10 servers. [Torr Samaho]
5051 ! - Spectators may now move freely even when the game has ended and players are frozen in place. [Dusk]
5152 ! - The "wrong protocol version" network error now shows the full server and client version. [Torr Samaho]
diff -r 9c10cab2a45e -r b047fbff4d49 src/p_user.cpp
--- a/src/p_user.cpp Sat Jun 04 22:09:48 2016 +0300
+++ b/src/p_user.cpp Thu Jun 16 14:25:48 2016 +0200
@@ -1822,7 +1822,7 @@
18221822 SCOREBOARD_RefreshHUD( );
18231823
18241824 // Spawn a new flag.
1825- pTeamItem = Spawn( PClass::FindClass( "WhiteFlag" ), x, y, ONFLOORZ, NO_REPLACE );
1825+ pTeamItem = Spawn( PClass::FindClass( "WhiteFlag" ), x, y, z, NO_REPLACE );
18261826 if ( pTeamItem )
18271827 {
18281828 pTeamItem->flags |= MF_DROPPED;
旧リポジトリブラウザで表示