mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- Added Karate Chris's fix for TEAMINFO definitions with just one team.
SVN r615 (trunk)
This commit is contained in:
parent
219aaeed03
commit
2b86ebe4e5
2 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
December 21, 2007 (Changes by Graf Zahl)
|
||||||
|
- Added Karate Chris's fix for TEAMINFO definitions with just one team.
|
||||||
|
|
||||||
December 20, 2007 (Changes by Graf Zahl)
|
December 20, 2007 (Changes by Graf Zahl)
|
||||||
- Added Blzut3's SBARINFO submission.
|
- Added Blzut3's SBARINFO submission.
|
||||||
- Added SnowKate709's A_LookEx submission.
|
- Added SnowKate709's A_LookEx submission.
|
||||||
|
|
|
@ -96,8 +96,8 @@ void TEAMINFO_Init ()
|
||||||
SC_Close();
|
SC_Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (teams.Size () == 0)
|
if (teams.Size () < 2)
|
||||||
I_FatalError ("No teams defined in TEAMINFO");
|
I_FatalError ("At least two teams must be defined in TEAMINFO");
|
||||||
}
|
}
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
Loading…
Reference in a new issue