Skip to content

Commit

Permalink
Fix incorrect translation syntax
Browse files Browse the repository at this point in the history
Worldedit was causing a crash when I used the "inspector" feature.
  • Loading branch information
hexagonrecursion authored Dec 13, 2023
1 parent 341014f commit b90eeb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worldedit_commands/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ minetest.register_on_punchnode(function(pos, node, puncher)
if worldedit.inspect[name] then
local axis, sign = worldedit.player_axis(name)
local message = S(
S("inspector: @1 at @2 (param1=@3, param2=@4, received light=@5) punched facing the @6 axis"),
"inspector: @1 at @2 (param1=@3, param2=@4, received light=@5) punched facing the @6 axis",
node.name,
minetest.pos_to_string(pos),
node.param1,
Expand Down

0 comments on commit b90eeb1

Please sign in to comment.