From ea05cee39314fc36467f5f9ca7b03a9f93eb4a1c Mon Sep 17 00:00:00 2001 From: "M. Kristall" Date: Tue, 5 Jun 2007 20:59:31 +0000 Subject: (bug 3104) save the correct variables for players who disconnect and come back (bug 3161) do not allow two clients to have the same name (Chris Schwarz) (bug 3205) let aliens move eggs when humans only have one node (Roman Tetelman) --- src/game/g_buildable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/g_buildable.c') diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c index cc5b4d37..c3d3415f 100644 --- a/src/game/g_buildable.c +++ b/src/game/g_buildable.c @@ -2817,7 +2817,7 @@ itemBuildError_t G_CanBuild( gentity_t *ent, buildable_t buildable, int distance reason = IBE_NOROOM; break; } - else if( tent->s.modelindex == BA_A_SPAWN && level.numHumanSpawns <= 1 ) + else if( tent->s.modelindex == BA_A_SPAWN && level.numAlienSpawns <= 1 ) { reason = IBE_NOROOM; break; -- cgit