From 10b06419ab454e8931a9b6502029bc298e8bce35 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Thu, 23 Dec 2010 22:35:53 +0200 Subject: changes to handing of digging (non backwards-compatible i guess) --- src/constants.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/constants.h') 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 -- cgit v1.2.3