diff --git a/assets/cubyz/entity/models/snail_player.obj b/assets/cubyz/entity/models/snale.obj similarity index 100% rename from assets/cubyz/entity/models/snail_player.obj rename to assets/cubyz/entity/models/snale.obj diff --git a/assets/cubyz/entity/textures/snail_player.png b/assets/cubyz/entity/textures/snale.png similarity index 100% rename from assets/cubyz/entity/textures/snail_player.png rename to assets/cubyz/entity/textures/snale.png diff --git a/src/entity.zig b/src/entity.zig index bcd913ea..00878332 100644 --- a/src/entity.zig +++ b/src/entity.zig @@ -110,8 +110,8 @@ pub const ClientEntityManager = struct { .{.attachments = &.{.alphaBlending}}, ); - modelTexture = main.graphics.Texture.initFromFile("assets/cubyz/entity/textures/snail_player.png"); - const modelFile = main.files.read(main.stackAllocator, "assets/cubyz/entity/models/snail_player.obj") catch |err| blk: { + modelTexture = main.graphics.Texture.initFromFile("assets/cubyz/entity/textures/snale.png"); + const modelFile = main.files.read(main.stackAllocator, "assets/cubyz/entity/models/snale.obj") catch |err| blk: { std.log.err("Error while reading player model: {s}", .{@errorName(err)}); break :blk &.{}; };