Skip to content

Commit c9d7920

Browse files
committed
Merge branch 'stable' into lexi/issue-949
2 parents a3d005a + b5ed907 commit c9d7920

File tree

4 files changed

+47
-10
lines changed

4 files changed

+47
-10
lines changed

common/p_mobj.cpp

+9-2
Original file line numberDiff line numberDiff line change
@@ -769,8 +769,15 @@ void AActor::RunThink ()
769769

770770
movecount++;
771771

772-
if (movecount < G_GetCurrentSkill().respawn_counter * TICRATE)
773-
return;
772+
int respawntimer = 0;
773+
774+
if (G_GetCurrentSkill().respawn_counter < 0)
775+
respawntimer = G_GetCurrentSkill().respawn_counter;
776+
else
777+
respawntimer = 12 * TICRATE;
778+
779+
if (movecount < respawntimer)
780+
return;
774781

775782
if (level.time & 31)
776783
return;

common/w_ident.cpp

+33-6
Original file line numberDiff line numberDiff line change
@@ -411,14 +411,23 @@ static const identData_t identdata[] = {
411411
// ------------------------------------------------------------------------
412412
// FREEDOOM1.WAD
413413
// ------------------------------------------------------------------------
414+
{
415+
FREEDOOM1_PREFIX " v0.13.0", // mIdName
416+
"FREEDOOM1.WAD", // mFilename
417+
"5B55E156", // mCRC32Sum
418+
"B93BE13D05148DD01614BC205A03648E", // mMd5Sum
419+
UDOOM_PREFIX " v1.9", // mGroupName
420+
IDENT_IWAD, // flags
421+
525, // weight
422+
},
414423
{
415424
FREEDOOM1_PREFIX " v0.12.1", // mIdName
416425
"FREEDOOM1.WAD", // mFilename
417426
"DE6DDB27", // mCRC32Sum
418427
"B36AA44A23045E503C19AF4B4C438A78", // mMd5Sum
419428
UDOOM_PREFIX " v1.9", // mGroupName
420-
IDENT_IWAD, // flags
421-
525, // weight
429+
IDENT_IWAD | IDENT_DEPRECATED, // flags
430+
1525, // weight
422431
},
423432
{
424433
FREEDOOM1_PREFIX " v0.12.0", // mIdName
@@ -505,14 +514,23 @@ static const identData_t identdata[] = {
505514
// ------------------------------------------------------------------------
506515
// FREEDOOM2.WAD
507516
// ------------------------------------------------------------------------
517+
{
518+
FREEDOOM2_PREFIX " v0.13.0", // mIdName
519+
"FREEDOOM2.WAD", // mFilename
520+
"68A76EB5", // mCRC32Sum
521+
"CD666466759B5E5F63AF93C5F0FFD0A1", // mMd5Sum
522+
DOOM2_PREFIX " v1.9", // mGroupName
523+
IDENT_IWAD, // flags
524+
500, // weight
525+
},
508526
{
509527
FREEDOOM2_PREFIX " v0.12.1", // mIdName
510528
"FREEDOOM2.WAD", // mFilename
511529
"212E1CF9", // mCRC32Sum
512530
"CA9A4159A7833544A89144C7F5053412", // mMd5Sum
513531
DOOM2_PREFIX " v1.9", // mGroupName
514-
IDENT_IWAD, // flags
515-
500, // weight
532+
IDENT_IWAD | IDENT_DEPRECATED, // flags
533+
1500, // weight
516534
},
517535
{
518536
FREEDOOM2_PREFIX " v0.12.0", // mIdName
@@ -599,14 +617,23 @@ static const identData_t identdata[] = {
599617
// ------------------------------------------------------------------------
600618
// FREEDM.WAD
601619
// ------------------------------------------------------------------------
620+
{
621+
FREEDM_PREFIX " v0.13.0", // mIdName
622+
"FREEDM.WAD", // mFilename
623+
"E5636B13", // mCRC32Sum
624+
"908DFD77A14CC490C4CEA94B62D13449", // mMd5Sum
625+
DOOM2_PREFIX " v1.9", // mGroupName
626+
IDENT_IWAD, // flags
627+
550, // weight
628+
},
602629
{
603630
FREEDM_PREFIX " v0.12.1", // mIdName
604631
"FREEDM.WAD", // mFilename
605632
"BD680D11", // mCRC32Sum
606633
"D40C932A9183DED919AFA89F4A729668", // mMd5Sum
607634
DOOM2_PREFIX " v1.9", // mGroupName
608-
IDENT_IWAD, // flags
609-
550, // weight
635+
IDENT_IWAD | IDENT_DEPRECATED, // flags
636+
1550, // weight
610637
},
611638
{
612639
FREEDM_PREFIX " v0.12.0", // mIdName

libraries/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,11 @@ endif()
267267
if(BUILD_CLIENT)
268268
set(_FLTK_BUILDGEN_PARAMS
269269
"-DOPTION_USE_SYSTEM_LIBJPEG=OFF"
270+
"-DOPTION_USE_SYSTEM_LIBPNG=OFF"
271+
"-DOPTION_USE_SYSTEM_ZLIB=OFF"
270272
"-DOPTION_PRINT_SUPPORT=OFF"
271273
"-DOPTION_USE_GL=OFF"
274+
272275
"-DFLTK_BUILD_TEST=OFF")
273276

274277
if(USE_INTERNAL_ZLIB)

server/src/sv_main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ CVAR_FUNC_IMPL (sv_maxplayers)
185185
}
186186

187187
std::string status = SV_BuildKillsDeathsStatusString(*it);
188-
SV_BroadcastPrintf(PRINT_HIGH, "%s became a spectator.(%s)\n",
188+
SV_BroadcastPrintf(PRINT_HIGH, "%s became a spectator. (%s)\n",
189189
it->userinfo.netname.c_str(), status.c_str());
190190

191191
MSG_WriteSVC(
@@ -3590,7 +3590,7 @@ void SV_SpecPlayer(player_t &player, bool silent)
35903590
if (!silent)
35913591
{
35923592
std::string status = SV_BuildKillsDeathsStatusString(player);
3593-
SV_BroadcastPrintf(PRINT_HIGH, "%s became a spectator.(%s)\n",
3593+
SV_BroadcastPrintf(PRINT_HIGH, "%s became a spectator. (%s)\n",
35943594
player.userinfo.netname.c_str(), status.c_str());
35953595
}
35963596

0 commit comments

Comments
 (0)