Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Version: 3.0.42
Date: ???
Changes:
- Allow AdminUnknownFixes to satisfy the Angel's + Py / PyCoalTBaA compatibility gate
- Fix load failure with zh-cn locale. Resolves https://github.com/pyanodon/pybugreports/issues/1347
- Added py.spoilage_enabled() which checks for the feature flag and mod setting
- Added META:hide() and META:unhide() to hide/unhide the prototype from any in-game browser and factoriopedia
Expand Down
2 changes: 1 addition & 1 deletion prototypes/functions/compatibility.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ then
end
end

if mods["angelsrefining"] and not mods["PyCoalTBaA"] then
if mods["angelsrefining"] and not mods["PyCoalTBaA"] and not mods["AdminUnknownFixes"] then
error("\n\n\n\n\nPlease install PyCoal Touched By an Angel\n\n\n\n\n")
end

Expand Down
Loading