From f0cb6d0b7c6db61280d874fb2c5540f1f9ff7932 Mon Sep 17 00:00:00 2001 From: InviseDivine Date: Fri, 27 Mar 2026 02:42:34 +0200 Subject: [PATCH] Fix compile errors --- src/network/ServerSideNetworkHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/ServerSideNetworkHandler.cpp b/src/network/ServerSideNetworkHandler.cpp index 5472b4d..50c5059 100755 --- a/src/network/ServerSideNetworkHandler.cpp +++ b/src/network/ServerSideNetworkHandler.cpp @@ -550,7 +550,7 @@ void ServerSideNetworkHandler::handle(const RakNet::RakNetGUID& source, WantCrea wantCreate.count = packet->count; wantCreate.setAuxValue(packet->auxValue); - Recipe* recipe = Recipe::getInstance()->getRecipeFor(wantCreate); + Recipe* recipe = Recipes::getInstance()->getRecipeFor(wantCreate); std::vector items = recipe->getItemPack().getItemInstances();