Fix beta issues

This commit is contained in:
JannisX11 2024-09-07 21:14:25 +02:00
parent f178d9eedf
commit 65e720a2e6
2 changed files with 2 additions and 2 deletions

View File

@ -2715,7 +2715,8 @@ Interface.definePanels(function() {
this.textures.forEach(tex => {
if (tex.frameCount > count) count = tex.frameCount;
});
return count > 1;
if (count == 1) return 0;
return count;
},
unselect(event) {
if (Blockbench.hasFlag('dragging_textures')) return;

View File

@ -2390,7 +2390,6 @@
"preview_scene.minecraft_sunset": "Sunset",
"preview_scene.minecraft_night": "Night",
"preview_scene.minecraft_desert": "Desert",
"preview_scene.minecraft_oceant": "Ocean",
"preview_scene.minecraft_underwater": "Underwater",
"preview_scene.minecraft_ocean": "Ocean",
"preview_scene.minecraft_coral_reef": "Coral Reef",