Skip to content

Commit aa2bd7c

Browse files
committed
Update for .17.35
1 parent c664228 commit aa2bd7c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

info.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "stdlib",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"factorio_version": "0.17",
55
"title": "Factorio Standard Library",
66
"author": "Afforess",
77
"contact": "",
88
"dependencies": [
9-
"base >= 0.17.0"
9+
"base >= 0.17.35"
1010
],
1111
"homepage": "https://github.com/Afforess/Factorio-Stdlib",
1212
"description": "The Factorio Standard Library is a project to bring Factorio modders high-quality, commonly-required utilities and tools."

stdlib/scripts/quickstart.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function quickstart.on_player_created(event)
7979
local power_armor = QS.get('power_armor', 'fake')
8080
if player.character and game.item_prototypes[power_armor] then
8181
--Put on power armor, install equipment
82-
player.get_inventory(defines.inventory.player_armor).insert(power_armor)
82+
player.get_inventory(defines.inventory.character_armor).insert(power_armor)
8383
local grid = player.character.grid
8484
if grid then
8585
for _, eq in pairs(QS.get('equipment', {'fusion-reactor-equipment'})) do

0 commit comments

Comments
 (0)