diff options
author | Aikar <[email protected]> | 2019-03-26 00:42:12 -0400 |
---|---|---|
committer | Aikar <[email protected]> | 2019-03-26 00:51:19 -0400 |
commit | 1073a39560a522a2e6e66b506582d68ac70673c9 (patch) | |
tree | 553da321811871c5ec9d3f31196b364229699c42 /Spigot-API-Patches/0040-Allow-Reloading-of-Command-Aliases.patch | |
parent | 2d68918daa82d3ead1c2c464832883ecd7622b8d (diff) | |
download | Paper-1073a39560a522a2e6e66b506582d68ac70673c9.tar.gz Paper-1073a39560a522a2e6e66b506582d68ac70673c9.zip |
Fix plugin errors corrupting timings stack
plugins that threw an error could get timings thrown off in its state
this likely led to inconsistent and unexplainable data in timings reports.
this ensures that exceptions will still stopTiming and let the system
auto self recover from corrupt stacks too.
Diffstat (limited to 'Spigot-API-Patches/0040-Allow-Reloading-of-Command-Aliases.patch')
-rw-r--r-- | Spigot-API-Patches/0040-Allow-Reloading-of-Command-Aliases.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Spigot-API-Patches/0040-Allow-Reloading-of-Command-Aliases.patch b/Spigot-API-Patches/0040-Allow-Reloading-of-Command-Aliases.patch index 741745be59..e4005ecc73 100644 --- a/Spigot-API-Patches/0040-Allow-Reloading-of-Command-Aliases.patch +++ b/Spigot-API-Patches/0040-Allow-Reloading-of-Command-Aliases.patch @@ -1,4 +1,4 @@ -From 4596b1efcb3648ea18ebf94eb07b49ee90c734e1 Mon Sep 17 00:00:00 2001 +From 092987e5e264aae797401bdbab3bc9c4df9a186c Mon Sep 17 00:00:00 2001 From: willies952002 <[email protected]> Date: Mon, 28 Nov 2016 10:16:39 -0500 Subject: [PATCH] Allow Reloading of Command Aliases @@ -55,10 +55,10 @@ index 30d60247..938959aa 100644 + // Paper end } diff --git a/src/main/java/org/bukkit/command/SimpleCommandMap.java b/src/main/java/org/bukkit/command/SimpleCommandMap.java -index 4aea03c6..63d27392 100644 +index 154b7d91..474cf4c3 100644 --- a/src/main/java/org/bukkit/command/SimpleCommandMap.java +++ b/src/main/java/org/bukkit/command/SimpleCommandMap.java -@@ -282,4 +282,10 @@ public class SimpleCommandMap implements CommandMap { +@@ -283,4 +283,10 @@ public class SimpleCommandMap implements CommandMap { } } } @@ -97,5 +97,5 @@ index f331a442..a977045d 100644 confirmed = true; } else { -- -2.17.0 (Apple Git-106) +2.21.0 |