diff --git a/example-mods/chat-commands/chat-commands.cpp b/example-mods/chat-commands/chat-commands.cpp index a7322619..20c2ccd8 100644 --- a/example-mods/chat-commands/chat-commands.cpp +++ b/example-mods/chat-commands/chat-commands.cpp @@ -15,7 +15,7 @@ HOOK(chat_handle_packet_send, void, (Minecraft *minecraft, ChatPacket *packet)) if (out.length() > 0 && out[out.length() - 1] == '\n') { out[out.length() - 1] = '\0'; } - gui->addMessage(&out); + gui->addMessage(out); } else { // Call Original Method ensure_chat_handle_packet_send(); diff --git a/example-mods/recipes/recipes.cpp b/example-mods/recipes/recipes.cpp index a9442871..5c1d559d 100644 --- a/example-mods/recipes/recipes.cpp +++ b/example-mods/recipes/recipes.cpp @@ -32,7 +32,7 @@ static void Recipes_injection(Recipes *recipes) { .auxiliary = 0 }; std::vector types = {type1, type2}; - recipes->addShapelessRecipe(&result, &types); + recipes->addShapelessRecipe(result, types); } // Custom Furnace Recipes @@ -43,7 +43,7 @@ static void FurnaceRecipes_injection(FurnaceRecipes *recipes) { .id = 246, .auxiliary = 0 }; - recipes->addFurnaceRecipe(49, &result); + recipes->addFurnaceRecipe(49, result); } // Init