Skip to content

Commit

Permalink
Update to 0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
DerMistkaefer committed Jan 28, 2020
1 parent 32556ce commit c197138
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ https://mods.factorio.com/mods/DerMistkaefer/BetterBelts


# Changelog
1.1.6 - Update to 0.18

1.1.5 - Update to 0.17 by poempelfox - https://github.com/poempelfox

1.1.4 - Update to 0.16 by XiNaru

1.1.3 - Add missing Highresoulution Images | Repaint all Images to fix the green Bleeding | Fix Alpha Issues | Add Loader Grafixs from Angel's Logistics | Add new Loader Icon -https://mods.factorio.com/mods/DerMistkaefer/BetterBelts/discussion/12923

1.1.2 - Fix Sprite Image Problems - https://mods.factorio.com/mods/DerMistkaefer/BetterBelts/discussion/11497
Expand Down
7 changes: 6 additions & 1 deletion data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ ultra_belt_starting_bottom = {filename = ultra_belt_filename, priority = "extra-
ultra_belt_starting_side = {filename = ultra_belt_filename, priority = "extra-high", width = 40, height = 40, frame_count = 32, y = 280,
hr_version = { filename = hr_ultra_belt_filename, priority = "extra-high", width = 80, height = 80, frame_count = 32, line_length = 16, y = 1120 ,scale = 0.5}}

ultra_belt_animation_set = { animation_set = { filename = ultra_belt_filename, priority = "extra-high", width = 64, height = 64, frame_count = 16, direction_count = 20,
hr_version = { filename = hr_ultra_belt_filename, priority = "extra-high", width = 128, height = 128, scale = 0.5, frame_count = 16, direction_count = 20}}}

------------------------------------

Expand Down Expand Up @@ -94,6 +96,7 @@ function BetterBelts_addEntity_undergroundBelt(beltName,beltSpeed,beltMax_distan
obj.starting_top = ultra_belt_starting_top
obj.starting_bottom = ultra_belt_starting_bottom
obj.starting_side = ultra_belt_starting_side
obj.belt_animation_set = ultra_belt_animation_set

data.raw[obj.type][obj.name] = obj
end
Expand Down Expand Up @@ -127,6 +130,7 @@ function BetterBelts_addEntity_Loader(beltName,beltSpeed,beltMax_distance)
obj.starting_top = ultra_belt_starting_top
obj.starting_bottom = ultra_belt_starting_bottom
obj.starting_side = ultra_belt_starting_side
obj.belt_animation_set = ultra_belt_animation_set

data.raw[obj.type][obj.name] = obj
end
Expand Down Expand Up @@ -159,6 +163,7 @@ function BetterBelts_addEntity_Splitter(beltName,beltSpeed,beltMax_distance)
obj.starting_top = ultra_belt_starting_top
obj.starting_bottom = ultra_belt_starting_bottom
obj.starting_side = ultra_belt_starting_side
obj.belt_animation_set = ultra_belt_animation_set

data.raw[obj.type][obj.name] = obj
end
Expand Down Expand Up @@ -186,7 +191,7 @@ function BetterBelts_addTechnology(thisName,thisIcon,thisType,thisEffect,thisPre
elseif thisIngredients == 4 then
obj.unit.ingredients = {{"automation-science-pack", 1},{"logistic-science-pack", 1},{"chemical-science-pack", 1},{"production-science-pack", 1}}
elseif thisIngredients == 5 then
obj.unit.ingredients = {{"automation-science-pack", 1},{"logistic-science-pack", 1},{"chemical-science-pack", 1},{"production-science-pack", 1},{"high-tech-science-pack", 1}}
obj.unit.ingredients = {{"automation-science-pack", 1},{"logistic-science-pack", 1},{"chemical-science-pack", 1},{"production-science-pack", 1},{"utility-science-pack", 1}}
end
obj.unit.time = thisTime
obj.order = thisOrder
Expand Down
6 changes: 3 additions & 3 deletions info.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "BetterBelts",
"version": "1.1.5",
"version": "1.1.6",
"title": "Better Belts",
"author": "DerMistkaefer, adcrafter27, LaVADraGoN, Updated by: XiNaru",
"contact": "dermistkaefer@gmail.com",
"homepage": "https://github.com/DerMistkaefer/Factorio_Better-Belts",
"description": "This Mod adds Better Belts and Loaders",
"factorio_version":"0.17",
"dependencies": ["base >= 0.17.0"]
"factorio_version":"0.18",
"dependencies": ["base >= 0.18.0"]
}

0 comments on commit c197138

Please sign in to comment.