diff --git a/assets/minecraft/textures/block/raw_gold_block.png b/assets/minecraft/textures/block/raw_gold_block.png index cc6a06bf..3dbc3b56 100644 Binary files a/assets/minecraft/textures/block/raw_gold_block.png and b/assets/minecraft/textures/block/raw_gold_block.png differ diff --git a/assets/minecraft/textures/block/raw_gold_block_n.png b/assets/minecraft/textures/block/raw_gold_block_n.png index 88f6e63e..9fd637e4 100644 Binary files a/assets/minecraft/textures/block/raw_gold_block_n.png and b/assets/minecraft/textures/block/raw_gold_block_n.png differ diff --git a/assets/minecraft/textures/entity/boat/boat_oak_n.png b/assets/minecraft/textures/entity/boat/boat_oak_n.png index cfcaebc0..bcf81fa2 100644 Binary files a/assets/minecraft/textures/entity/boat/boat_oak_n.png and b/assets/minecraft/textures/entity/boat/boat_oak_n.png differ diff --git a/assets/minecraft/textures/entity/squid_n.png b/assets/minecraft/textures/entity/squid_n.png index 56ef9523..4e294d59 100644 Binary files a/assets/minecraft/textures/entity/squid_n.png and b/assets/minecraft/textures/entity/squid_n.png differ diff --git a/normalize.py b/normalize.py index be78aaca..974edcc3 100644 --- a/normalize.py +++ b/normalize.py @@ -44,7 +44,7 @@ def normalize(path, depth): # Keep original array for comparison original_arr = arr - arr = arr.astype(dtype=np.float) / 255 + arr = arr.astype(float) / 255 arr *= 2 arr -= 1 @@ -83,5 +83,7 @@ def normalize(path, depth): t0 = time() curr_path = os.path.abspath(".") -total_nb = normalize(curr_path, depth=0) +for ii in range(256): + print(f"Iteration {ii}") + total_nb = normalize(curr_path, depth=0) print("Finished, total of %s files repainted in %s seconds" % (total_nb, int(time() - t0))) diff --git a/patch_notes.txt b/patch_notes.txt index 77a6e533..865930a8 100644 --- a/patch_notes.txt +++ b/patch_notes.txt @@ -9,7 +9,7 @@ Added : - Raw gold block Fixed : -- Some impossible normals slightly corrected +- 78 normal files with some impossible values finally 100% corrected - Incorrectly named "exidized_cut_copper.png" - Dolphin now in the correct folder - Removed unused "dropper_front_horizontal" normal texture