mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- fixed: map commands will now take capslock DM/COOP as arguments
This commit is contained in:
parent
f72ebe6768
commit
6755373f46
3 changed files with 8 additions and 8 deletions
|
@ -71,7 +71,7 @@ extern bool netgame;
|
||||||
// Bot game? Like netgame, but doesn't involve network communication.
|
// Bot game? Like netgame, but doesn't involve network communication.
|
||||||
extern bool multiplayer;
|
extern bool multiplayer;
|
||||||
|
|
||||||
// [SP] MPMap implementation - invokes fake multiplayer without bots
|
// [SP] Map dm/coop implementation - invokes fake multiplayer without bots
|
||||||
extern bool multiplayernext;
|
extern bool multiplayernext;
|
||||||
|
|
||||||
// Flag: true only if started as net deathmatch.
|
// Flag: true only if started as net deathmatch.
|
||||||
|
|
|
@ -164,7 +164,7 @@ bool viewactive;
|
||||||
|
|
||||||
bool netgame; // only true if packets are broadcast
|
bool netgame; // only true if packets are broadcast
|
||||||
bool multiplayer;
|
bool multiplayer;
|
||||||
bool multiplayernext = false; // [SP] MPMap implementation
|
bool multiplayernext = false; // [SP] Map coop/dm implementation
|
||||||
player_t players[MAXPLAYERS];
|
player_t players[MAXPLAYERS];
|
||||||
bool playeringame[MAXPLAYERS];
|
bool playeringame[MAXPLAYERS];
|
||||||
|
|
||||||
|
|
|
@ -183,12 +183,12 @@ CCMD (map)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (argv.argc() > 2 && strcmp(argv[2], "coop") == 0)
|
if (argv.argc() > 2 && stricmp(argv[2], "coop") == 0)
|
||||||
{
|
{
|
||||||
deathmatch = false;
|
deathmatch = false;
|
||||||
multiplayernext = true;
|
multiplayernext = true;
|
||||||
}
|
}
|
||||||
else if (argv.argc() > 2 && strcmp(argv[2], "dm") == 0)
|
else if (argv.argc() > 2 && stricmp(argv[2], "dm") == 0)
|
||||||
{
|
{
|
||||||
deathmatch = true;
|
deathmatch = true;
|
||||||
multiplayernext = true;
|
multiplayernext = true;
|
||||||
|
@ -230,12 +230,12 @@ CCMD(recordmap)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (argv.argc() > 3 && strcmp(argv[3], "coop") == 0)
|
if (argv.argc() > 3 && stricmp(argv[3], "coop") == 0)
|
||||||
{
|
{
|
||||||
deathmatch = false;
|
deathmatch = false;
|
||||||
multiplayernext = true;
|
multiplayernext = true;
|
||||||
}
|
}
|
||||||
else if (argv.argc() > 3 && strcmp(argv[3], "dm") == 0)
|
else if (argv.argc() > 3 && stricmp(argv[3], "dm") == 0)
|
||||||
{
|
{
|
||||||
deathmatch = true;
|
deathmatch = true;
|
||||||
multiplayernext = true;
|
multiplayernext = true;
|
||||||
|
@ -280,12 +280,12 @@ CCMD (open)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (argv.argc() > 2 && strcmp(argv[2], "coop") == 0)
|
if (argv.argc() > 2 && stricmp(argv[2], "coop") == 0)
|
||||||
{
|
{
|
||||||
deathmatch = false;
|
deathmatch = false;
|
||||||
multiplayernext = true;
|
multiplayernext = true;
|
||||||
}
|
}
|
||||||
else if (argv.argc() > 2 && strcmp(argv[2], "dm") == 0)
|
else if (argv.argc() > 2 && stricmp(argv[2], "dm") == 0)
|
||||||
{
|
{
|
||||||
deathmatch = true;
|
deathmatch = true;
|
||||||
multiplayernext = true;
|
multiplayernext = true;
|
||||||
|
|
Loading…
Reference in a new issue