Skip to content

Commit

Permalink
fix field typo
Browse files Browse the repository at this point in the history
  • Loading branch information
BuckarooBanzay committed Apr 28, 2020
1 parent 7cf41a6 commit e4b4563
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions monitoring_pipeworks/chatcommands.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ minetest.register_chatcommand("pipeworks_enable_visuals", {
description = "enables the pipeworks visuals",
privs = {server=true},
func = function()
pipeworks.pipeworks.enable_visuals = true
monitoring.pipeworks.enable_visuals = true
return true, "Visuals enabled"
end
})
Expand All @@ -39,7 +39,7 @@ minetest.register_chatcommand("pipeworks_disable_visuals", {
description = "disables the pipeworks visuals",
privs = {server=true},
func = function()
pipeworks.pipeworks.enable_visuals = false
monitoring.pipeworks.enable_visuals = false
return true, "Visuals disabled"
end
})

0 comments on commit e4b4563

Please sign in to comment.