Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Fifth/resources/scripts/Standard/BuilderController.lua
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@ function BuilderController:onLoop()
end

if(self.isTiling) then
if (self.brush > table.getn(self.brushes)) do
self.brush = table.getn(self.brushes)
end
tileSize = game.tileSize()

if(self.mouseDown) then
Expand Down Expand Up @@ -291,4 +294,4 @@ end

function create(parent, component)
return BuilderController(parent, component)
end
end