Skip to content

Commit 99c3200

Browse files
committed
fixed unrecognized command error message
1 parent 6f51fd5 commit 99c3200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eggwatch.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,6 @@ elseif command == "split_stacks" then
503503
elseif not command or command == "status" then
504504
print_status()
505505
elseif (command ~= "enable" or command ~= "disable") and not dfhack_flags.enable then
506-
handle_error(("Command " % s " is not recognized"):format(command))
506+
handle_error(("Command '% s' is not recognized"):format(command))
507507
end
508508
persist_state()

0 commit comments

Comments
 (0)