Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Commit

Permalink
Revert max bal to 900 decillion for 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
creatorfromhell committed Sep 13, 2018
1 parent 934f1b8 commit 52ff435
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 2 additions & 1 deletion TNE/src/net/tnemc/core/common/CurrencyManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public CurrencyManager() {
}

public void loadCurrencies() {
largestSupported = new BigDecimal("900000000000000000000000000000000000000000000");
//1.1.4 -> largestSupported = new BigDecimal("900000000000000000000000000000000000000000000");
largestSupported = new BigDecimal("900000000000000000000000000000000000");

loadCurrency(TNE.instance().getConfig(), false, TNE.instance().defaultWorld);
for(WorldManager manager : TNE.instance().getWorldManagers()) {
Expand Down
5 changes: 1 addition & 4 deletions TNE/src/net/tnemc/resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,7 @@ Core:
#Octillion - X
#Nonillion - W
#Decillion - V
#Undecillion - U
#Nondecillion - N
#Nonvigintillion - ₮
Prefixes: 'kMGTPEZYXWVUN₮'
Prefixes: 'kMGTPEZYXWV'

#The character to use as the symbol for this currency.
Symbol: '$'
Expand Down

0 comments on commit 52ff435

Please sign in to comment.