| 320 | } |
| 321 | |
| 322 | Json LuaBindings::RootCallbacks::projectileConfig(Root* root, String const& arg1) { |
| 323 | auto projectileDatabase = root->projectileDatabase(); |
| 324 | return projectileDatabase->projectileConfig(arg1); |
| 325 | } |
| 326 | |
| 327 | JsonArray LuaBindings::RootCallbacks::recipesForItem(Root* root, String const& arg1) { |
| 328 | auto recipes = root->itemDatabase()->recipesForOutputItem(arg1); |
nothing calls this directly
no test coverage detected