diff --git a/CHANGELOG.md b/CHANGELOG.md index 36cf765..98a6b07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -61,6 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Fixed missing trailing newline when using the `warn` global - Fixed constructor for `CFrame` in the `roblox` built-in library not parsing the 12-arg overload correctly. ([#102]) - Fixed various functions for `CFrame` in the `roblox` built-in library being incorrect, specifically row-column ordering and some flipped signs. ([#103]) diff --git a/src/lune/globals/warn.rs b/src/lune/globals/warn.rs index ba98b8a..bf7cb18 100644 --- a/src/lune/globals/warn.rs +++ b/src/lune/globals/warn.rs @@ -9,7 +9,7 @@ use crate::lune::{ pub fn create(lua: &'static Lua) -> LuaResult> { lua.create_async_function(|_, args: LuaMultiValue| async move { let formatted = format!( - "{}\n{}", + "{}\n{}\n", format_label("warn"), pretty_format_multi_value(&args)? );