Skip to content

Commit

Permalink
fix break hits encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
GuckTubeYT authored May 23, 2024
1 parent 68b51c8 commit 07b60f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/js/items_tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ function process_item_encoder(result, using_txt) {

// break hits
if (result1[16].includes("r")) encoded_buffer_file[mem_pos++] = Number(result1[16].slice(0, -1))
else encoded_buffer_file[mem_pos++] = Number(result1[16])
else encoded_buffer_file[mem_pos++] = Number(result1[16]) * 6

// drop chance
write_buffer_number(mem_pos, 4, result1[17])
Expand Down

0 comments on commit 07b60f6

Please sign in to comment.