Skip to content

Commit

Permalink
Format Code
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Oct 3, 2023
1 parent f90c870 commit e0dfc41
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bobclasses/prototypes/character.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data.raw.character.character.icons = {
icon = "__bobclasses__/icons/character.png",
icon_size = 128,
icon_mipmaps = 4,
}
},
}

bobmods.classes.characters["bob-character-miner"] = util.merge({
Expand Down
2 changes: 1 addition & 1 deletion boblogistics/prototypes/technology-inserter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ data:extend({
icon = "__core__/graphics/icons/technology/constants/constant-capacity.png",
icon_size = 128,
icon_mipmaps = 3,
shift = {50, 50},
shift = { 50, 50 },
scale = 0.5,
},
},
Expand Down
4 changes: 2 additions & 2 deletions boblogistics/prototypes/technology-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,9 @@ for i = 1, 7 do
icon = "__core__/graphics/icons/technology/constants/constant-capacity.png",
icon_size = 128,
icon_mipmaps = 3,
shift = {50, 50},
shift = { 50, 50 },
scale = 0.5,
}
},
}
data.raw.technology["inserter-capacity-bonus-" .. i].icon_size = 128
end
Expand Down
4 changes: 2 additions & 2 deletions bobwarfare/prototypes/entity/projectiles.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1432,9 +1432,9 @@ data:extend({
initial_height = 0,
speed_from_center = 0.05,
speed_from_center_deviation = 0.005,
offset_deviation = {{-4, -4}, {4, 4}},
offset_deviation = { { -4, -4 }, { 4, 4 } },
max_radius = 3.5,
repeat_count = 4 * 4 * 15
repeat_count = 4 * 4 * 15,
},
},
},
Expand Down
10 changes: 2 additions & 8 deletions bobwarfare/prototypes/overides.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ then
if delivery.target_effects.damage then
delivery.target_effects = { delivery.target_effects }
end
table.insert(
delivery.target_effects,
{ type = "damage", damage = { amount = 2, type = "bob-pierce" } }
)
table.insert(delivery.target_effects, { type = "damage", damage = { amount = 2, type = "bob-pierce" } })
end

if
Expand All @@ -25,10 +22,7 @@ then
if delivery.target_effects.damage then
delivery.target_effects = { delivery.target_effects }
end
table.insert(
delivery.target_effects,
{ type = "damage", damage = { amount = 2, type = "bob-pierce" } }
)
table.insert(delivery.target_effects, { type = "damage", damage = { amount = 2, type = "bob-pierce" } })
end

data.raw.ammo["uranium-rounds-magazine"].magazine_size = 25
Expand Down

0 comments on commit e0dfc41

Please sign in to comment.