disable experimental elements in mods, intro text fix for mods

This commit is contained in:
jacob1 2017-03-04 23:52:16 -05:00
parent cd448a5747
commit 83657e8773
4 changed files with 7 additions and 3 deletions

View File

@ -30,8 +30,12 @@ static const char *introTextData =
"\n"
"\bt" MTOS(SAVE_VERSION) "." MTOS(MINOR_VERSION) "." MTOS(BUILD_NUM) " " IDENT_PLATFORM " "
#ifdef SNAPSHOT
#if MOD_ID > 0
"MODVER " MTOS(SNAPSHOT_ID) " "
#else
"SNAPSHOT " MTOS(SNAPSHOT_ID) " "
#endif
#endif
#ifdef X86
"X86 "
#endif

View File

@ -8,7 +8,7 @@ Element_E180::Element_E180()
Colour = PIXPACK(0xCB6351);
MenuVisible = 1;
MenuSection = SC_SOLIDS;
#if defined(DEBUG) || defined(SNAPSHOT)
#if (defined(DEBUG) || defined(SNAPSHOT)) && MOD_ID == 0
Enabled = 1;
#else
Enabled = 0;

View File

@ -7,7 +7,7 @@ Element_E181::Element_E181()
Colour = PIXPACK(0xF0F0A0);
MenuVisible = 1;
MenuSection = SC_POWDERS;
#if defined(DEBUG) || defined(SNAPSHOT)
#if (defined(DEBUG) || defined(SNAPSHOT)) && MOD_ID == 0
Enabled = 1;
#else
Enabled = 0;

View File

@ -14,7 +14,7 @@ Element_E182::Element_E182()
Colour = PIXPACK(0x506030);
MenuVisible = 1;
MenuSection = SC_NUCLEAR;
#if defined(DEBUG) || defined(SNAPSHOT)
#if (defined(DEBUG) || defined(SNAPSHOT)) && MOD_ID == 0
Enabled = 1;
#else
Enabled = 0;