Skip to content

Commit

Permalink
Fixed chipped gems not being added (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rundas01 committed Mar 23, 2023
1 parent bb4bbc9 commit 48789fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public MaterialEvent asGemBasic(boolean transparent, IMaterialTag... tags) {

public MaterialEvent asGem(boolean transparent, IMaterialTag... tags) {
asGemBasic(transparent, tags);
if (!transparent) flags(AntimatterMaterialTypes.GEM_BRITTLE, AntimatterMaterialTypes.GEM_POLISHED, AntimatterMaterialTypes.GEM_FLAWED, AntimatterMaterialTypes.GEM_FLAWLESS, AntimatterMaterialTypes.GEM_EXQUISITE);
if (!transparent) flags(AntimatterMaterialTypes.GEM_BRITTLE, AntimatterMaterialTypes.GEM_CHIPPED, AntimatterMaterialTypes.GEM_POLISHED, AntimatterMaterialTypes.GEM_FLAWED, AntimatterMaterialTypes.GEM_FLAWLESS, AntimatterMaterialTypes.GEM_EXQUISITE);
return this;
}

Expand Down

0 comments on commit 48789fa

Please sign in to comment.