Skip to content

Commit

Permalink
Fix the month parser starting to read way too soon
Browse files Browse the repository at this point in the history
  • Loading branch information
Quezler committed Dec 15, 2024
1 parent bc9d227 commit 5747161
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 1.1.6
Date: 2024. 12. 15
Info:
- Fix the month parser starting to read way too soon
---------------------------------------------------------------------------------------------------
Version: 1.1.5
Date: 2024. 11. 27
Info:
Expand Down
4 changes: 3 additions & 1 deletion mods_2.0/032_newsletter-for-mods-made-by-quezler/control.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,11 @@ local function get_human_calendar_date()
if string.len(version) ~= 17 then version = "12024.11114.11645" end

local year = string.sub(version, 2, 5)
local month = string.sub(version, 6, 9)
local month = string.sub(version, 8, 9)
local day = string.sub(version, 10, 11)

-- error(serpent.block({year, month, day}))

return year, month, day
end

Expand Down
2 changes: 1 addition & 1 deletion mods_2.0/032_newsletter-for-mods-made-by-quezler/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"title": "Newsletter for mods made by Quezler",
"description": "Read it in order to stay informed about my mods.",

"version": "1.1.4",
"version": "1.1.6",
"author": "Quezler",
"factorio_version": "2.0",

Expand Down

0 comments on commit 5747161

Please sign in to comment.