fix: revert accidentally lowercased version global

This commit is contained in:
Erica Marigold 2024-04-20 20:08:08 +05:30 committed by GitHub
parent d07168d60b
commit ac8d3a944d
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -1,13 +1,12 @@
use mlua::prelude::*;
pub fn create(lua: &Lua) -> LuaResult<impl IntoLua<'_>> {
let lune_version = format!("{} {}", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION"));
let lune_version = format!("Lune {}", env!("CARGO_PKG_VERSION"));
let luau_version_full = lua
.globals()
.get::<_, LuaString>("_VERSION")
.expect("Missing _VERSION global");
let luau_version_str = luau_version_full
.to_str()
.context("Invalid utf8 found in _VERSION global")?;