From d6b270e197780618f35568647dfc4f5f377130c8 Mon Sep 17 00:00:00 2001 From: Ombridride Date: Tue, 9 Dec 2014 14:06:19 +0100 Subject: [PATCH] Update cow for multiple textures --- mods/mobs/cow.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mods/mobs/cow.lua b/mods/mobs/cow.lua index 4350f902..94d3e8b0 100644 --- a/mods/mobs/cow.lua +++ b/mods/mobs/cow.lua @@ -6,7 +6,11 @@ mobs:register_mob("mobs:cow", { hp_min = 10, hp_max = 15, collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, - textures = {"mobs_cow.png"}, + --textures = {"mobs_cow.png"}, + available_textures = { + total = 1, + texture_1 = {"mobs_cow.png"}, + }, visual = "mesh", mesh = "mobs_cow.x", makes_footstep_sound = true,