Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(loggin): remove unnecessary logging and add comments #11

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ local formspec_state = {}
--normally displayed to someone who is NOT the entity owner
--call with topic=START for starting a dialog, or with no topic and it will default to start.
function simple_dialogs.show_dialog_formspec(playername,npcself,topic)
-- formspec_state should not be nil, but it cannot be set to open/closing here.
if not formspec_state[playername] then
formspec_state[playername] = ""
end
Expand All @@ -198,7 +199,6 @@ function simple_dialogs.show_dialog_formspec(playername,npcself,topic)
formspec=table.concat(formspec,"")
-- minetest.log("action", "Showing formspec for player: " .. playername .. ", formspec name: simple_dialogs:dialog, formspec_state: " .. formspec_state[playername])
if formspec_state[playername] == "closing" then
minetest.log("action", "Closing formspec " .. playername)
formspec_state[playername] = nil
return
end
Expand Down