whoops forgot to delete that

This commit is contained in:
Lilian Jónsdóttir 2020-10-11 20:53:27 -07:00
parent c5099e7ea4
commit 20672f5d93

View file

@ -73,7 +73,7 @@ this.pickCellFaction = function(cell)
-- from the majority values, return the faction with the largest percentage, or nil -- from the majority values, return the faction with the largest percentage, or nil
local picked = common.keyOfLargestValue(npcs.majorityFactions) local picked = common.keyOfLargestValue(npcs.majorityFactions)
log(common.logLevels.medium, "[CELLEVAL] Picked faction %s for cell %s", picked, cell.id) log(common.logLevels.medium, "[CELLEVAL] Picked faction %s for cell %s", picked, cell.id)
log(common.logLevels.large, "[CELLEVAL] breakdown:\n%s", common.inspect(npcs, {indent = true})) log(common.logLevels.large, "[CELLEVAL] breakdown:\n%s", common.inspect(npcs))
return picked return picked
end end