Vanilla Development Mailing List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS update: Vanilla/ntserv



Date:	Sunday February 20, 19100 @ 19:40
Author:	xyzzy

Update of /home/netrek/cvsroot/Vanilla/ntserv
In directory swashbuckler.fortress.real-time.com:/var/tmp/cvs-serv29127

Modified Files:
	plasma.c 
Log Message:
Made the check for out of bounds plasma creation normal, instead of just in
ping-pong mode.  It will normally not happen in non-ping-pong mode, but it
would still be a bad thing if it did.


****************************************

Index: Vanilla/ntserv/plasma.c
diff -u Vanilla/ntserv/plasma.c:1.2 Vanilla/ntserv/plasma.c:1.3
--- Vanilla/ntserv/plasma.c:1.2	Fri Apr 30 15:18:45 1999
+++ Vanilla/ntserv/plasma.c	Sun Feb 20 19:40:20 2000
@@ -56,11 +56,9 @@
   for (k = firstPlasmaOf(me); k <= lastPlasmaOf(me); k++)
     if (k->t_status == TFREE)
       break;
-  if (pingpong_plasma) {
-    if (k > lastPlasmaOf(me))  {
-      new_warning(UNDEF,"We are out of plasma, for the moment, Captain!");
-      return;
-    }
+  if (k > lastPlasmaOf(me))  {
+    new_warning(UNDEF,"We are out of plasma, for the moment, Captain!");
+    return;
   }
     
 #if 0