Skip to content

Commit

Permalink
Change 'mobs_monster' prefix to 'mobs'
Browse files Browse the repository at this point in the history
  • Loading branch information
AntumDeluge committed Aug 10, 2017
1 parent 7b88141 commit e5da9cc
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local S = mobs.intllib

-- Oerkki by PilzAdam

mobs:register_mob("mobs_monster:oerkki", {
mobs:register_mob("mobs:oerkki", {
type = "monster",
passive = false,
attack_type = "dogfight",
Expand Down Expand Up @@ -60,15 +60,12 @@ mobs:register_mob("mobs_monster:oerkki", {


mobs:spawn({
name = "mobs_monster:oerkki",
name = "mobs:oerkki",
nodes = {"default:stone"},
max_light = 7,
chance = 7000,
max_height = -10,
})


mobs:register_egg("mobs_monster:oerkki", S("Oerkki"), "default_obsidian.png", 1)


mobs:alias_mob("mobs:oerkki", "mobs_monster:oerkki") -- compatiblity
mobs:register_egg("mobs:oerkki", S("Oerkki"), "default_obsidian.png", 1)

0 comments on commit e5da9cc

Please sign in to comment.