In buildinghelper.lua function PlaceBuilding, newName is used though never declared (unless i'm missing something).
construction_size = construction_size or BuildingHelper:GetConstructionSize(newName)
pathing_size = pathing_size or BuildingHelper:GetBlockPathingSize(newName)
If i'm not mistaken this should be
construction_size = construction_size or BuildingHelper:GetConstructionSize(name)
pathing_size = pathing_size or BuildingHelper:GetBlockPathingSize(name)
In buildinghelper.lua function PlaceBuilding, newName is used though never declared (unless i'm missing something).
If i'm not mistaken this should be
since name is passed as an argument.