Namespacing pt. 4

This commit is contained in:
2022-11-24 01:06:37 -05:00
parent 6bae4b3b6f
commit e1d5a664fe
9 changed files with 23 additions and 62 deletions

View File

@@ -23,7 +23,7 @@ minetest.register_abm({
-- People
-- Currently only male and female.
-- No non-binary erasure intended; there just aren't that many non-binary guys in Eastern Europe.
mobs:register_mob("people:female", {
mobs:register_mob(":people:female", {
type = "npc",
passive = true,
attack_type = "dogfight",
@@ -77,7 +77,7 @@ mobs:register_mob("people:female", {
},
})
mobs:register_mob("people:male", {
mobs:register_mob(":people:male", {
type = "npc",
passive = true,
attack_type = "dogfight",

View File

@@ -1,2 +1,2 @@
name = people
name = ip_people
depends = mobs