The Cum Monster

This commit is contained in:
Lizzy Fleckenstein 2022-01-27 21:41:57 +01:00
parent 768c718fe4
commit 9bb03727b2
Signed by untrusted user: LizzyFleckenstein03
GPG Key ID: 06927A5199D6C9B2
1 changed files with 8 additions and 1 deletions

View File

@ -63,8 +63,15 @@ mobs:register_mob("mobs_mc:polar_bear", {
walk_start = 0, walk_end = 40,
run_start = 0, run_end = 40,
},
view_range = 16,
do_custom = function(self)
if not self._cum_nametag_set then
self.nametag = "The Cum Monster"
self._cum_nametag_set = true
mobs.update_tag(self)
end
end,
})