Add compatibility patch

This commit is contained in:
Emik 2026-07-27 20:51:42 +02:00
parent 27ce5bbb2e
commit 406da64ae2
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
2 changed files with 13 additions and 1 deletions

View file

@ -65,6 +65,18 @@ position = "at"
payload = "elseif G.GAME.blind_on_deck == 'Big' then" payload = "elseif G.GAME.blind_on_deck == 'Big' then"
match_indent = true match_indent = true
# Prevent Incantation from overriding Faster Planets
[[patches]]
[patches.pattern]
target = '=[SMODS incantation "Incantation.lua"]'
pattern = "function Card:use_consumeable(area, copier)"
position = "after"
payload = """if SMODS.Mods.Roland.config.faster_planets and
self.ability.consumeable.hand_type then
return useconsumeref(self, area, copier)
end"""
match_indent = true
# Misfortune Cookie # Misfortune Cookie
[[patches]] [[patches]]
[patches.pattern] [patches.pattern]

View file

@ -3,7 +3,7 @@
"id": "Roland", "id": "Roland",
"name": "Roland", "name": "Roland",
"prefix": "Roland", "prefix": "Roland",
"version": "2.9.84", "version": "2.9.85",
"badge_colour": "8BE9FD", "badge_colour": "8BE9FD",
"display_name": "Roland", "display_name": "Roland",
"main_file": "src/main.lua", "main_file": "src/main.lua",