refactor: minor changes

This commit is contained in:
2025-03-13 21:34:24 -04:00
parent 3400541a79
commit a957aaeaec
5 changed files with 13 additions and 11 deletions

View File

@@ -19,7 +19,6 @@ pub fn health(_lua: &Lua, client: &Client) -> Result<f32> {
pub fn hunger(lua: &Lua, client: &Client) -> Result<Table> {
let hunger = client.hunger();
let table = lua.create_table()?;
table.set("food", hunger.food)?;
table.set("saturation", hunger.saturation)?;