diff --git a/nim/src/ui/knowledgeevents.nim b/nim/src/ui/knowledgeevents.nim index 742eda169..fece0f5f6 100644 --- a/nim/src/ui/knowledgeevents.nim +++ b/nim/src/ui/knowledgeevents.nim @@ -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.") diff --git a/nim/src/ui/knowledgemissions.nim b/nim/src/ui/knowledgemissions.nim index 23d6deffa..ecf568142 100644 --- a/nim/src/ui/knowledgemissions.nim +++ b/nim/src/ui/knowledgemissions.nim @@ -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.")