Skip to content

Commit

Permalink
Remove textplate's in-game-only items that can cause false-positive a…
Browse files Browse the repository at this point in the history
…ccessibility warnings. (#119)

The textplate-*material*-small/large-*symbol* items are useful in-game,
but not in YAFC. The textplate-*material*-small and
textplate-*material*-large items still exist, so plate crafting can be
planned.

(This is copied from ShadowTheAge#192)
  • Loading branch information
shpaass authored May 10, 2024
2 parents 39ab06a + c4b6bd1 commit 5f88b1d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions YAFC/Data/Mod-fixes/EvenMoreTextPlates.globals.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
local evenmoretextplates = ...;

for _,plate in pairs(evenmoretextplates.new_types) do
plate.symbols = {}
end

return evenmoretextplates;
7 changes: 7 additions & 0 deletions YAFC/Data/Mod-fixes/textplates.textplates.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
local textplates = ...;

for _,plate in pairs(textplates.types) do
plate.symbols = {}
end

return textplates;

0 comments on commit 5f88b1d

Please sign in to comment.