Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SRB2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
STJr
SRB2
Merge requests
!740
Only call P_CheckSurvivors() in tag gametypes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Only call P_CheckSurvivors() in tag gametypes
fix-keep-body-tag
into
next
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
LJ Sonic
requested to merge
fix-keep-body-tag
into
next
5 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
next
next (base)
and
latest version
latest version
31ce0764
1 commit,
5 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/p_tick.c
+
1
−
1
Options
@@ -600,7 +600,7 @@ void P_Ticker(boolean run)
{
players
[
i
].
quittime
++
;
if
(
players
[
i
].
quittime
==
30
*
TICRATE
)
if
(
players
[
i
].
quittime
==
30
*
TICRATE
&&
G_TagGametype
()
)
P_CheckSurvivors
();
if
(
server
&&
players
[
i
].
quittime
>=
(
tic_t
)
FixedMul
(
cv_rejointimeout
.
value
,
60
*
TICRATE
)
Loading