• R/O
  • SSH

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

This is a fork of Zandronum Beta for Mac Os (Silicon and Intel)


コミットメタ情報

リビジョン3d1dc73737a3cb34b9fa1746335954ea724238bb (tree)
日時2022-12-15 23:21:49
作者Adam Kaminski <kaminskiadam9@gmai...>
コミッターAdam Kaminski

ログメッセージ

Spectators are now allowed to keep spying on other actors when sv_disallowspying is enabled.

変更サマリ

差分

diff -r 2edc2eb5a3dc -r 3d1dc73737a3 src/d_main.cpp
--- a/src/d_main.cpp Tue Dec 13 17:12:49 2022 -0500
+++ b/src/d_main.cpp Thu Dec 15 09:21:49 2022 -0500
@@ -519,7 +519,8 @@
519519 if (self & DF2_DISALLOW_SPYING)
520520 {
521521 // The player isn't looking through its own eyes, so make it.
522- if (p->camera != p->mo)
522+ // [AK] Allow spectators to keep spying on other actors.
523+ if ((p->camera != p->mo) && p->bSpectating == false)
523524 {
524525 p->camera = p->mo;
525526