mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
Fix missing newline in warn global
This commit is contained in:
parent
2963751f6c
commit
a86a62ae1f
2 changed files with 2 additions and 1 deletions
|
@ -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])
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ use crate::lune::{
|
|||
pub fn create(lua: &'static Lua) -> LuaResult<impl IntoLua<'_>> {
|
||||
lua.create_async_function(|_, args: LuaMultiValue| async move {
|
||||
let formatted = format!(
|
||||
"{}\n{}",
|
||||
"{}\n{}\n",
|
||||
format_label("warn"),
|
||||
pretty_format_multi_value(&args)?
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue