1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-12-29 04:18:07 +01:00

Forcing batch payment delay to 1 or more seconds.

This commit is contained in:
Zrips 2022-06-24 13:26:06 +03:00
parent 6822508631
commit 9e6a5efc17

View File

@ -555,6 +555,9 @@ public class GeneralConfigManager {
"Setting this too low may cause tick lag. Increase this to improve economy performance (at the cost of delays in payment)");
economyBatchDelay = c.get("economy-batch-delay", 5);
// We need this to be atleast 1 or more seconds
economyBatchDelay = economyBatchDelay < 1 ? 1 : economyBatchDelay;
c.addComment("economy-async", "Enable async economy calls.", "Disable this if you have issues with payments or your plugin is not thread safe.");
economyAsync = c.get("economy-async", true);