Skip to content

Commit

Permalink
fix: names of Tcl commands
Browse files Browse the repository at this point in the history
FossilOrigin-Name: cd122241f1c621eb3e4c7e0a9eda823aca4abd9b06d9fad7770b342154845742
  • Loading branch information
thindil committed Oct 3, 2024
1 parent 3b722ab commit 4083825
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nim/src/ui/knowledgeevents.nim
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ proc addCommands*() {.raises: [], tags: [WriteIOEffect, TimeEffect].} =
try:
addCommand("ShowEventInfo", showEventInfoCommand)
addCommand("ShowEvents", showEventsCommand)
addCommand("SortEvents", sortEventsCommand)
addCommand("SortKnownEvents", sortEventsCommand)
except:
showError(message = "Can't add a Tcl command.")

Expand Down
2 changes: 1 addition & 1 deletion nim/src/ui/knowledgemissions.nim
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ proc addCommands*() {.raises: [], tags: [WriteIOEffect, TimeEffect].} =
try:
addCommand("ShowMissionMenu", showMissionsMenuCommand)
addCommand("ShowMissions", showMissionsCommand)
addCommand("SortMissions", sortMissionsCommand)
addCommand("SortAccepted_Missions", sortMissionsCommand)
except:
showError(message = "Can't add a Tcl command.")

Expand Down

0 comments on commit 4083825

Please sign in to comment.