Fix warnings compiling server

This commit is contained in:
Lucien Greathouse
2019-02-27 00:49:38 -08:00
parent 20be37dd8b
commit cf5036eec6
2 changed files with 4 additions and 8 deletions

View File

@@ -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")
});
}