From 2e8ef08a59c3257a3eaef1e7c979598c6c426d59 Mon Sep 17 00:00:00 2001 From: Gryph667 <38962974+Gryph667@users.noreply.github.com> Date: Tue, 29 May 2018 01:19:14 -0400 Subject: [PATCH 1/2] Update config.yml --- Towny/settings/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Towny/settings/config.yml b/Towny/settings/config.yml index 2e2cab5..4f09325 100755 --- a/Towny/settings/config.yml +++ b/Towny/settings/config.yml @@ -243,7 +243,7 @@ town: # Do not forget to set the default_tax to more than 0 or new towns will still begin with a tax of zero. minimumtax: '0.0' # Limits the maximum amount of bonus blocks a town can buy. - max_purchased_blocks: '5' + max_purchased_blocks: '2,147,483,647' # maximum number of plots any single resident can own max_plots_per_resident: '400' # maximum number used in /town claim/unclaim # commands. @@ -268,7 +268,7 @@ town: # The maximum townblocks available to a town is (numResidents * ratio). # Setting this value to 0 will instead use the level based jump values determined in the town level config. - town_block_ratio: '32' + town_block_ratio: '48' # The size of the square grid cell. Changing this value is suggested only when you first install Towny. # Doing so after entering data will shift things unwantedly. Using smaller value will allow higher precision, # at the cost of more work setting up. Also, extremely small values will render the caching done useless. @@ -789,7 +789,7 @@ economy: # How much it costs a player to buy extra blocks. price_purchased_bonus_townblock: '75' # How much every extra bonus block costs more. Set to 1 to deactivate this. 1.2 means +20% to every bonus claim block cost. - price_purchased_bonus_townblock_increase: '1.0' + price_purchased_bonus_townblock_increase: '1.5' death: # Either fixed or percentage. -- 2.30.2 From 67e53639a4c241668f0a67ac723444b0ca6af503 Mon Sep 17 00:00:00 2001 From: NorbiPeti Date: Wed, 30 May 2018 15:23:37 +0200 Subject: [PATCH 2/2] Fix syntax error (number format) Using commas in numbers are not supported and cause an error on plot purchase. --- Towny/settings/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Towny/settings/config.yml b/Towny/settings/config.yml index 4f09325..9b34cea 100755 --- a/Towny/settings/config.yml +++ b/Towny/settings/config.yml @@ -243,7 +243,7 @@ town: # Do not forget to set the default_tax to more than 0 or new towns will still begin with a tax of zero. minimumtax: '0.0' # Limits the maximum amount of bonus blocks a town can buy. - max_purchased_blocks: '2,147,483,647' + max_purchased_blocks: '2147483647' # maximum number of plots any single resident can own max_plots_per_resident: '400' # maximum number used in /town claim/unclaim # commands. -- 2.30.2