From 9d70b64ed4e0e352922e5fb1d3af6b1b50e76445 Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Fri, 12 Jan 2018 16:11:58 +0000 Subject: [PATCH] changed particles to desert sand --- sand_monster.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sand_monster.lua b/sand_monster.lua index 54933a0..92ac056 100644 --- a/sand_monster.lua +++ b/sand_monster.lua @@ -49,7 +49,7 @@ mobs:register_mob("mobs_monster:sand_monster", { textures = { {"mobs_sand_monster.png"}, }, - blood_texture = "default_sand.png", + blood_texture = "default_desert_sand.png", makes_footstep_sound = true, sounds = { random = "mobs_sandmonster", @@ -86,9 +86,9 @@ mobs:register_mob("mobs_monster:sand_monster", { ]] on_die = function(self, pos) pos.y = pos.y + 0.5 - effect(pos, 20, "default_sand.png", nil, nil, 0.5, nil) + effect(pos, 20, "default_desert_sand.png", nil, nil, 0.5, nil) pos.y = pos.y + 0.25 - effect(pos, 20, "default_sand.png", nil, nil, 1, nil) + effect(pos, 20, "default_desert_sand.png", nil, nil, 1, nil) end, })