Skip to content

Commit

Permalink
Fix #minecraft:load/tick being flagged
Browse files Browse the repository at this point in the history
  • Loading branch information
DEVTomatoCake committed Jan 10, 2024
1 parent f9c4489 commit c172ea0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/analyzer.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ let dpExclusive = {
r: 0,
s: 0
},
functions: [],
functionCalls: ["#minecraft:load", "#minecraft:tick"]
functions: ["#minecraft:load", "#minecraft:tick"],
functionCalls: [{target: "#minecraft:load"}, {target: "#minecraft:tick"}]
}
let rpExclusive = {
atlases: 0,
Expand Down Expand Up @@ -292,8 +292,8 @@ async function mainScan(hasData = false) {
r: 0,
s: 0
},
functions: [],
functionCalls: ["#minecraft:load", "#minecraft:tick"]
functions: ["#minecraft:load", "#minecraft:tick"],
functionCalls: [{target: "#minecraft:load"}, {target: "#minecraft:tick"}]
}
rpExclusive = {
atlases: 0,
Expand Down

0 comments on commit c172ea0

Please sign in to comment.