Skip to content

Commit

Permalink
Update to Factorio 0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
narc0tiq committed Aug 29, 2016
1 parent 80f60b1 commit 28b30ae
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.105
0.7.106
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "{{MOD_NAME}}",
"version": "{{VERSION}}",
"factorio_version": "0.13",
"factorio_version": "0.14",
"title": "Yet Another Resource Monitor Fork",
"author": "Octav 'narc' Sandulescu, based on work by drs, jorgenRe, and L0771",
"homepage": "https://github.com/narc0tiq/YARM",
Expand Down
12 changes: 10 additions & 2 deletions prototypes/prototypes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ data:extend(
shift = {0.0, 0.0}
}
},
{
type = "resource-category",
name = "empty-resource-category",
},
{
type = "recipe-category",
name = "empty-recipe-category",
},
})

local empty_animation = {
Expand Down Expand Up @@ -122,8 +130,8 @@ local empty_anim_level = {

local fake_player = table.deepcopy(data.raw.player.player)
fake_player.name = "yarm-remote-viewer"
fake_player.crafting_categories = {}
fake_player.mining_categories = {}
fake_player.crafting_categories = {"empty-recipe-category"}
fake_player.mining_categories = {"empty-resource-category"}
fake_player.max_health = 0
fake_player.inventory_size = 0
fake_player.build_distance = 0
Expand Down

0 comments on commit 28b30ae

Please sign in to comment.