]> git.pond.sub.org Git - empserver/commitdiff
(GUINEA_PIGS, opt_GUINEA_PIGS, Options): New option GUINEA_PIGS.
authorMarkus Armbruster <armbru@pond.sub.org>
Thu, 16 Dec 2004 22:01:30 +0000 (22:01 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Thu, 16 Dec 2004 22:01:30 +0000 (22:01 +0000)
include/optlist.h
info/Server/Options.t
src/lib/global/options.c

index 9db5e2260c1308aeb30876fe412ea10d4139776d..017ca08fb5e6e0fc87475606df244425e47fdb4b 100644 (file)
@@ -55,6 +55,7 @@ extern int opt_FALLOUT;
 extern int opt_FUEL;
 extern int opt_GODNEWS;
 extern int opt_GO_RENEW;
+extern int opt_GUINEA_PIGS;
 extern int opt_HIDDEN;
 extern int opt_INTERDICT_ATT;
 extern int opt_LANDSPIES;
index 81b2dd22e9e17f7069d72dd46acc4fa10c4d8ed2..03e66905ba9c2164d01d3ef08dc165a74f8140db 100644 (file)
@@ -46,6 +46,8 @@ DEFENSE_INFRA:  Use the new defensive infrastructure.  Otherwise, use
                  sector efficiency for defensive values.
 GODNEWS:        The world is told via news when deities are giving or taking
                  things from players.
+GUINEA_PIGS:   Experimental stuff not ready for prime time.  Enable at your
+                own risk!
 GO_RENEW:       Gold and Oil are renewable resources.
 MOB_ACCESS:     Allows real-time updating of mobility.
 MARKET:         Time-delay market and trade.
index 9b731fdcd7ae8d9376491964709e8f40f19276f4..4ecda0852b9a20aee6a2943b0c82c31987a228eb 100644 (file)
@@ -69,6 +69,12 @@ int opt_GO_RENEW = 1;
 int opt_GO_RENEW = 0;
 #endif
 
+#ifdef GUINEA_PIGS
+int opt_GUINEA_PIGS = 1;
+#else
+int opt_GUINEA_PIGS = 0;
+#endif
+
 #ifdef DEFENSE_INFRA
 int opt_DEFENSE_INFRA = 1;
 #else
@@ -304,6 +310,7 @@ struct option_list Options[] = {
     {"FUEL", &opt_FUEL},
     {"GODNEWS", &opt_GODNEWS},
     {"GO_RENEW", &opt_GO_RENEW},
+    {"GUINEA_PIGS", &opt_GUINEA_PIGS},
     {"HIDDEN", &opt_HIDDEN},
     {"INTERDICT_ATT", &opt_INTERDICT_ATT},
     {"LANDSPIES", &opt_LANDSPIES},