update build number, which was incorrect. Add an easy way for mods to ignore updates

This commit is contained in:
jacob1 2012-11-18 12:43:11 -05:00
parent 0be465aa4e
commit 4654a2aaa0
2 changed files with 5 additions and 1 deletions

View File

@ -25,7 +25,7 @@
#endif
#ifndef BUILD_NUM
#define BUILD_NUM 248
#define BUILD_NUM 249
#endif
#ifndef SNAPSHOT_ID
@ -40,6 +40,8 @@
#endif
//VersionInfoEnd
//#define IGNORE_UPDATES //uncomment this for mods, to not get any update notifications
#if defined(SNAPSHOT)
#define IDENT_RELTYPE "S"
#elif defined(BETA)

View File

@ -623,10 +623,12 @@ void Client::Tick()
}
#endif
#ifndef IGNORE_UPDATES
if(updateAvailable)
{
notifyUpdateAvailable();
}
#endif
}
catch (json::Exception &e)
{