core/menusystem: add a forgotten comma

This commit is contained in:
Kazhnuz 2019-02-11 19:43:49 +01:00
parent 5920fc18dd
commit 2e0503f75a

View file

@ -4,7 +4,7 @@ local Menu = require(cwd .. "parent")
GridBox = Menu:extend()
function GridBox:new(controller, name x, y, w, h, slots_hor, slots_vert)
function GridBox:new(controller, name, x, y, w, h, slots_hor, slots_vert)
ListBox.super.new(self, controller, name, x, y, w, h)
self.slots = slots_hor * slots_vert
self.slots_hor = slots_hor