Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
chores: add missing method invoke
Browse files Browse the repository at this point in the history
  • Loading branch information
smartcmd committed Jan 13, 2024
1 parent 06eaf7a commit 4cbac3a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ LL_AUTO_TYPE_INSTANCE_HOOK(
auto out = std::ofstream("data/crafting_data_packet.bin", std::ofstream::out | std::ofstream::binary | std::ofstream::trunc);
out << datacopy;
out.close();
hookLogger.info("create crafting_data_packet.bin success!");
hookLogger.info("Create crafting_data_packet.bin success!");
}

namespace plugin {
Expand Down Expand Up @@ -731,6 +731,8 @@ void ext(ll::Logger& logger) {
dumpBlockAttributesData(logger);
dumpItemData(logger);
dumpPalette(logger);
dumpBlockTags(logger);
dumpItemTags(logger);
}

Plugin::Plugin(ll::plugin::NativePlugin& self) : mSelf(self) { mSelf.getLogger().info("loading..."); }
Expand Down

0 comments on commit 4cbac3a

Please sign in to comment.