Skip to content

Commit 9fa9e63

Browse files
authored
Merge 3ecf0a9 into 0e23095
2 parents 0e23095 + 3ecf0a9 commit 9fa9e63

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

crates/languages/bevy_mod_scripting_lua/src/bindings/script_value.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ impl FromLua for LuaScriptValue {
5959
Value::String(s) => ScriptValue::String(s.to_str()?.to_owned().into()),
6060
Value::Function(f) => ScriptValue::Function(
6161
(move |_context: FunctionCallContext, args: VecDeque<ScriptValue>| {
62-
println!("Lua function called with args: {args:?}");
6362
match f.call::<LuaScriptValue>(
6463
args.into_iter()
6564
.map(LuaScriptValue)

0 commit comments

Comments
 (0)