diff options
author | Perttu Ahola <celeron55@gmail.com> | 2010-12-23 22:35:53 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2010-12-23 22:35:53 +0200 |
commit | 10b06419ab454e8931a9b6502029bc298e8bce35 (patch) | |
tree | f8dedc838957537e0ee9efc627c695afccb3c9f2 /src/constants.h | |
parent | 61b5a353849f8c8a188c4f91c1aa89c9e7a1d10a (diff) | |
download | minetest-10b06419ab454e8931a9b6502029bc298e8bce35.tar.gz minetest-10b06419ab454e8931a9b6502029bc298e8bce35.tar.bz2 minetest-10b06419ab454e8931a9b6502029bc298e8bce35.zip |
changes to handing of digging (non backwards-compatible i guess)
Diffstat (limited to 'src/constants.h')
-rw-r--r-- | src/constants.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/constants.h b/src/constants.h index cf394ca02..b6b09b50b 100644 --- a/src/constants.h +++ b/src/constants.h @@ -47,7 +47,7 @@ with this program; if not, write to the Free Software Foundation, Inc., // Time after building, during which the following limit // is in use -#define FULL_BLOCK_SEND_ENABLE_MIN_TIME_FROM_BUILDING 2.0 +//#define FULL_BLOCK_SEND_ENABLE_MIN_TIME_FROM_BUILDING 2.0 // This many blocks are sent when player is building #define LIMITED_MAX_SIMULTANEOUS_BLOCK_SENDS 0 // Override for the previous one when distance of block @@ -69,7 +69,11 @@ with this program; if not, write to the Free Software Foundation, Inc., // Whether to catch all std::exceptions. // Assert will be called on such an event. -#define CATCH_UNHANDLED_EXCEPTIONS 1 +#ifdef DEBUG + #define CATCH_UNHANDLED_EXCEPTIONS 0 +#else + #define CATCH_UNHANDLED_EXCEPTIONS 1 +#endif /* Collecting active blocks is stopped after object data @@ -80,7 +84,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #define WATER_LEVEL (0) // Length of cracking animation in count of images -#define CRACK_ANIMATION_LENGTH 4 +#define CRACK_ANIMATION_LENGTH 5 #endif |