Skip to content

Commit

Permalink
fix: revert unintended changes
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewdean committed Sep 29, 2024
1 parent 5a8ade8 commit cccac90
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vm-rust/src/player/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -937,11 +937,10 @@ fn get_active_static_script_refs<'a>(
// }

async fn player_ext_call<'a>(name: String, args: &Vec<DatumRef>, scope_ref: ScopeRef) -> HandlerExecutionResult {
// let formatted_args: Vec<String> = reserve_player_ref(|player| {
// args.iter().map(|datum_ref| format_datum(*datum_ref, player)).collect()
// });
// warn!("ext_call: {name}({})", formatted_args.join(", "));
});
log_i(format_args!("ext_call: {name}({})", formatted_args.join(", ")).to_string().as_str());
match name.as_str() {
"return" => {
if let Some(return_value) = args.first() {
Expand Down

0 comments on commit cccac90

Please sign in to comment.