Skip to content

Commit

Permalink
Fix identify.py for 1.18-pre8
Browse files Browse the repository at this point in the history
  • Loading branch information
Pokechu22 committed Feb 17, 2022
1 parent a9d3377 commit 868fd00
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion burger/toppings/identify.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@

# Similarly, in 1.13, "bubble" is ambiguous between the particle class and
# particle list, but the particletypes topping works with the first result in that case.
IGNORE_DUPLICATES = [ "biome.register", "particletypes" ]

# In 1.18-pre8, the "Getting block state" message now appears in both rendering
# code and world code, but in both cases the return type is correct.
IGNORE_DUPLICATES = [ "biome.register", "particletypes", "blockstate" ]

def check_match(value, match_list):
exact = False
Expand Down

0 comments on commit 868fd00

Please sign in to comment.