From 01b7c9604f256e61d2a7fd2bd9ba5429adaf2b31 Mon Sep 17 00:00:00 2001 From: Lars Mueller Date: Sun, 11 Oct 2020 14:06:43 +0200 Subject: [PATCH] Style: Break long line --- mods/player_api/api.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mods/player_api/api.lua b/mods/player_api/api.lua index 7761be93..12b37ba8 100644 --- a/mods/player_api/api.lua +++ b/mods/player_api/api.lua @@ -32,7 +32,8 @@ function player_api.register_model(name, def) animation.collisionbox = animation.collisionbox or def.collisionbox for _, other_animation in pairs(def.animations) do if other_animation._equals then - if collisionbox_equals(animation.collisionbox, other_animation.collisionbox) and animation.eye_height == other_animation.eye_height then + if collisionbox_equals(animation.collisionbox, other_animation.collisionbox) + and animation.eye_height == other_animation.eye_height then animation._equals = other_animation._equals break end