From 7ad83bfb63835809a7c1220195ccb83bfad21d27 Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Tue, 6 Jul 2021 19:01:06 -0700 Subject: [PATCH] :bug: fixed last commit --- ccash_config.hpp.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ccash_config.hpp.in b/ccash_config.hpp.in index 0266248..8aee97d 100644 --- a/ccash_config.hpp.in +++ b/ccash_config.hpp.in @@ -1,18 +1,18 @@ #pragma once -// Setting both values to 0 does not compile logging (useful for if disk/memory is very valuable) +// Setting to 0 does not compile logging (useful for if disk/memory is very valuable) #define MAX_LOG_SIZE @MAX_LOG_SIZE_VAL @ //default to minecraft usernames constexpr unsigned min_name_size = 3; constexpr unsigned max_name_size = 16; -constexpr const char *users_location = @USER_SAVE @; -constexpr const char *config_location = @DROGON_CONFIG @; +constexpr const char *users_location = @USER_SAVE@; +constexpr const char *config_location = @DROGON_CONFIG@; // Returns money to an account on deletion (useful if you dont want any money to leave the economy) #define RETURN_ON_DEL @RETURN_ON_DEL_VAL @ -constexpr const char *return_account = @RETURN_ON_DEL_NAME_VAL @; +constexpr const char *return_account = @RETURN_ON_DEL_NAME_VAL@; /* if true, when frequency is hit AND changes have happened then save @@ -26,7 +26,7 @@ if false, when frequency is hit save cons HIGH disk usage */ -#define CONSERVATIVE_DISK_SAVE @CONSERVATIVE_DISK_SAVE_VAL @ +#define CONSERVATIVE_DISK_SAVE @CONSERVATIVE_DISK_SAVE_VAL@ /* example, when set to 2 @@ -37,4 +37,4 @@ etc */ #define API_VERSION 1 -#define MULTI_THREADED @MULTI_THREADED_VAL @ \ No newline at end of file +#define MULTI_THREADED @MULTI_THREADED_VAL@ \ No newline at end of file