Skip to content

Commit

Permalink
recipe/vanilla.go: Remove useless append
Browse files Browse the repository at this point in the history
  • Loading branch information
TwistedAsylumMC committed Apr 28, 2024
1 parent 9c792ca commit d21051c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/item/recipe/vanilla.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func init() {
panic(err)
}

for _, s := range append(craftingRecipes.Shapeless) {
for _, s := range craftingRecipes.Shapeless {
input, ok := s.Input.Items()
output, okTwo := s.Output.Stacks()
if !ok || !okTwo {
Expand Down

0 comments on commit d21051c

Please sign in to comment.