mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-20 23:46:57 +01:00
SPIGOT-3240: Temporarily stub out rarely used resetRecipes method to fix some issues.
This commit is contained in:
parent
240f16d1cc
commit
c410240567
1 changed files with 4 additions and 0 deletions
|
@ -1077,6 +1077,10 @@ public final class CraftServer implements Server {
|
|||
|
||||
@Override
|
||||
public void resetRecipes() {
|
||||
// See SPIGOT-3240
|
||||
if (true) {
|
||||
return;
|
||||
}
|
||||
CraftingManager.recipes = new RegistryMaterials();
|
||||
CraftingManager.init();
|
||||
RecipesFurnace.getInstance().recipes = new RecipesFurnace().recipes;
|
||||
|
|
Loading…
Reference in a new issue