diff --git a/server/src/rbx_session.rs b/server/src/rbx_session.rs index f2bb71d0..00940dca 100644 --- a/server/src/rbx_session.rs +++ b/server/src/rbx_session.rs @@ -32,12 +32,6 @@ const INIT_SCRIPT: &str = "init.lua"; const INIT_SERVER_SCRIPT: &str = "init.server.lua"; const INIT_CLIENT_SCRIPT: &str = "init.client.lua"; -fn show_snapshot_error(path: &Path, error: SnapshotError) { - error!("Rojo couldn't turn one of the project's files into Roblox instances."); - error!("Any changes to the file have been ignored."); - error!("{}", error); -} - /// `source_path` or `project_definition` or both must both be Some. #[derive(Debug, Clone, PartialEq, Default, Serialize, Deserialize)] pub struct MetadataPerInstance { @@ -183,7 +177,9 @@ impl RbxSession { return; }, Err(err) => { - show_snapshot_error(&path_to_snapshot, err); + error!("Rojo couldn't turn one of the project's files into Roblox instances."); + error!("Any changes to the file have been ignored."); + error!("{}", err); return; }, }; diff --git a/server/src/rbx_snapshot.rs b/server/src/rbx_snapshot.rs index 5cbd0b3c..9f9be279 100644 --- a/server/src/rbx_snapshot.rs +++ b/server/src/rbx_snapshot.rs @@ -81,7 +81,7 @@ impl rlua::UserData for LuaRbxSnapshot { } }); - methods.add_meta_method(rlua::MetaMethod::ToString, |_context, this, _args: ()| { + methods.add_meta_method(rlua::MetaMethod::ToString, |_context, _this, _args: ()| { Ok("RbxSnapshotInstance") }); }