Update 'mods/mobs_npc/r2.lua'

This commit is contained in:
thunderdog1138 2020-11-21 20:32:51 +00:00
parent 4d92964fd6
commit 857501782b
1 changed files with 2 additions and 2 deletions

View File

@ -71,11 +71,11 @@ mobs:register_mob("mobs_npc:r2", {
self:set_animation("stand")
self:set_velocity(0)
minetest.chat_send_player(name, S("NPC stands still."))
minetest.chat_send_player(name, "R2 Unit stands still.")
else
self.order = "follow"
minetest.chat_send_player(name, S("NPC will follow you."))
minetest.chat_send_player(name, "R2 Unit will follow you.")
end
end
end,