style: format

This commit is contained in:
Tsubasa6848
2024-05-28 03:32:11 +08:00
Unverified
parent c6b40206d8
commit 8f9447bcdb
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -633,7 +633,7 @@ void Export_Compatibility_API() {
RemoteCall::exportAs("GMLIB_API", "getBlockDestroySpeed", [](Block const* block) -> float {
return block->getDestroySpeed();
});
RemoteCall::exportAs("GMLIB_API", "getDestroyBlockSpeed", [](ItemStack const* item,Block const* block) -> float {
RemoteCall::exportAs("GMLIB_API", "getDestroyBlockSpeed", [](ItemStack const* item, Block const* block) -> float {
return item->getDestroySpeed(*block);
});
}