A248 πŸ‡΅πŸ‡ΈπŸ‡ͺπŸ‡­

Results 174 comments of A248 πŸ‡΅πŸ‡ΈπŸ‡ͺπŸ‡­

If a platform uses the Adventure API, it isn't much work to add support for it. LibertyBans already uses the Adventure library, so if Fabric uses Adventure too, the Fabric...

To become more acquainted with Fabric I started to investigate the matter. However, because LibertyBans uses Maven as its build system, and Fabric effectively requires mods to use Gradle, it...

Fabric support is still possible, although it may require a downstream consumer of the LibertyBans project to depend on the core modules and bundle a plugin via Gradle. This isn't...

Note that ghost mutes would be possible only if LibertyBans is installed on the backend servers, since it is impossible to get the chat format from the proxy.

No. There's nothing wrong with installing on the backend servers, however.

I'm not sure if this is the correct place to comment on the API that @tvallotton has sketched up. If there's a better place, let me know. ----------------------------------------------------------------------------------------------------------------------------------------------- My main...

I hastily wanted my own plugin to run on Sponge API 9, so I decided to manually scan methods and generate event listeners using reflection. You're free to use this...

So I did some debugging on this and apparently it's because SaneEconomy uses `BigDecimal`, so, when MoneyNote gets the player's balance as a double, SE returns the value of `bigDecimal.doubleValue()`....

Compare the BigDecimals to a degree of accuracy: ```java private static final BigDecimal PRECISION = new BigDecimal("0.0001"); private static boolean hasBalance(BigDecimal accountBalance, BigDecimal requiredBalance) { return (accountBalance.compareTo(requiredBalance) >= 0) ||...

> Would it be better to access a potentially unresponsive MySQL server on the main thread and lock up the rest of the server while we wait? Don't get me...