disable experimental elements in mods, intro text fix for mods
This commit is contained in:
parent
cd448a5747
commit
83657e8773
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user