Skip to content

Commit

Permalink
Merge #126: Update to Factorio 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
narc0tiq committed Nov 26, 2020
2 parents 1a445e5 + f38a577 commit 3b053d6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.102
0.8.201
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.18",
"factorio_version": "1.1",
"title": "YARM - Resource Monitor",
"author": "Octav 'narc' Sandulescu, based on work by drs, jorgenRe, and L0771",
"homepage": "https://github.com/narc0tiq/YARM",
Expand Down
6 changes: 3 additions & 3 deletions prototypes/prototypes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ data:extend(
type = 'shortcut',
name = 'yarm-selector',
order = "a[yarm]",
action = 'create-blueprint-item',
item_to_create = 'yarm-selector-tool',
action = 'spawn-item',
item_to_spawn = 'yarm-selector-tool',
style = 'green',
icon = {
filename = '__{{MOD_NAME}}__/graphics/resource-monitor-x32-white.png',
Expand Down Expand Up @@ -42,7 +42,7 @@ data:extend(
name = 'yarm-selector-tool',
icon = '__{{MOD_NAME}}__/graphics/resource-monitor.png',
icon_size = 32,
flags = {'only-in-cursor', 'hidden'},
flags = {'only-in-cursor', 'hidden', 'spawnable'},
stack_size = 1,
stackable = false,
selection_color = { g = 1 },
Expand Down
1 change: 1 addition & 0 deletions remote.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require "resmon"
local mod_gui = require("mod-gui")

local interface = {}

Expand Down
2 changes: 1 addition & 1 deletion resmon.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require "util"
require "libs/array_pair"
require "libs/ore_tracker"
require "mod-gui"
local mod_gui = require("mod-gui")

-- Sanity: site names aren't allowed to be longer than this, to prevent them
-- kicking the buttons off the right edge of the screen
Expand Down

0 comments on commit 3b053d6

Please sign in to comment.