From 427b6b1f3fa1a2a799c0f5e07d7511ca29ed06e6 Mon Sep 17 00:00:00 2001 From: unknown <24964441+wsor4035@users.noreply.github.com> Date: Sun, 28 Nov 2021 01:31:53 -0500 Subject: [PATCH] make luacheck happy --- computers/computers.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/computers/computers.lua b/computers/computers.lua index 0853e6b..c1a7d1a 100644 --- a/computers/computers.lua +++ b/computers/computers.lua @@ -116,7 +116,9 @@ minetest.register_node("computers:monitor", { inventory_image = "computers_monitor_inv.png", drawtype = "mesh", mesh = "computers_monitor.obj", - tiles = {"computers_black.png", "computers_monitor_plastic.png", "computers_black.png", "computers_monitor_plastic.png"}, + tiles = { + "computers_black.png", "computers_monitor_plastic.png", "computers_black.png", "computers_monitor_plastic.png" + }, paramtype = "light", paramtype2 = "facedir", walkable = false, @@ -132,7 +134,12 @@ minetest.register_node("computers:monitor", { minetest.register_node("computers:monitor_on", { drawtype = "mesh", mesh = "computers_monitor.obj", - tiles = {"computers_monitor_display.png^[transformFX", "computers_monitor_plastic.png", "computers_black.png", "computers_monitor_plastic.png"}, + tiles = { + "computers_monitor_display.png^[transformFX", + "computers_monitor_plastic.png", + "computers_black.png", + "computers_monitor_plastic.png" + }, paramtype = "light", paramtype2 = "facedir", light_source = 9,