From 892b6002e4b5fc12305c57f7161b7124be3dbef8 Mon Sep 17 00:00:00 2001 From: Emily <35617540+emilyy-dev@users.noreply.github.com> Date: Mon, 17 May 2021 15:19:02 -0300 Subject: [PATCH] Fix Counter#decrement recursive call (#5665) --- Spigot-API-Patches/Timings-v2.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spigot-API-Patches/Timings-v2.patch b/Spigot-API-Patches/Timings-v2.patch index 9abb77ffc..44ef3919e 100644 --- a/Spigot-API-Patches/Timings-v2.patch +++ b/Spigot-API-Patches/Timings-v2.patch @@ -2041,7 +2041,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + return increment(key, 1); + } + public long decrement(@Nullable T key, long amount) { -+ return decrement(key, -amount); ++ return increment(key, -amount); + } + public long increment(@Nullable T key, long amount) { + Long count = this.getCount(key);