Remove log message translation

Aside from typos in the code that caused the mod to crash when the log
messages were produced, there seems to be a bug in the way translated
strings are displayed in the logs. This requires further investigation,
meanwhile, this commit prevents the crash.
This commit is contained in:
upsilon 2020-04-02 22:08:42 +02:00
parent 49e8ac3d78
commit 1f88969175
No known key found for this signature in database
GPG Key ID: A80DAE1F266E1C3C
3 changed files with 3 additions and 9 deletions

View File

@ -210,7 +210,7 @@ if get_setting("teleport_arrow") then
on_hit_sound = "throwing_teleport_arrow",
on_hit = function(self, _, last_pos, _, _, hitter)
if minetest.get_node(last_pos).name ~= "air" then
minetest.log("warning", S("[throwing] BUG: node at @1 was not air", last_pos))
minetest.log("warning", "[throwing] BUG: node at "..minetest.pos_to_string(last_pos).." was not air")
return
end
@ -232,7 +232,7 @@ if get_setting("fire_arrow") then
on_hit_sound = "default_place_node",
on_hit = function(self, pos, last_pos, _, _, hitter)
if minetest.get_node(last_pos).name ~= "air" then
minetest.log(S("warning", "[throwing] BUG: node at @1 was not air", last_pos))
minetest.log("warning", "[throwing] BUG: node at "..minetest.pos_to_string(last_pos).." was not air")
return
end
@ -261,7 +261,7 @@ if get_setting("build_arrow") then
on_hit_sound = "throwing_build_arrow",
on_hit = function(self, pos, last_pos, _, _, hitter)
if minetest.get_node(last_pos).name ~= "air" then
minetest.log(S("warning", "[throwing] BUG: node at @1 was not air", last_pos))
minetest.log("warning", "[throwing] BUG: node at "..minetest.pos_to_string(last_pos).." was not air")
return
end

View File

@ -23,6 +23,3 @@ Teleport Arrow=
Torch Arrow=
Build Arrow=
Drop Arrow=
## Warnings
[throwing] BUG: node at @1 was not air=

View File

@ -23,6 +23,3 @@ Teleport Arrow=Flèche de téléportation
Torch Arrow=Flèche-torche
Build Arrow=Flèche de construction
Drop Arrow=Flèche de livraison
## Warnings
[throwing] BUG: node at @1 was not air=[throwing] BUG : le bloc à @1 nétait pas de lair