Update 'README.md'

added PatchFailed to exit codes
This commit is contained in:
IsWaffle 2022-07-04 15:07:02 +00:00
parent 7136dcdf3c
commit bb730aaa0d

View File

@ -40,5 +40,6 @@ public enum PatcherExitCode
NoPatchFolder = 12, // no patch folder was found during patching (patch client only) NoPatchFolder = 12, // no patch folder was found during patching (patch client only)
MissingFile = 13, // a matching file could not be found during patching (patch client only) MissingFile = 13, // a matching file could not be found during patching (patch client only)
MissingDir = 14 // a directory could not be found during patch generation (source/target/output) (patch generator only) MissingDir = 14 // a directory could not be found during patch generation (source/target/output) (patch generator only)
PatchFailed = 15 // a patch file failed (patch client only)
} }
``` ```