Skip to content

Commit

Permalink
[MIRROR] Makes the DM too old to build message better. (#1548) (#2494)
Browse files Browse the repository at this point in the history
* Makes the DM too old to build message better. (#82110)

Since the current wording was kinda ambiguous.

* Makes the DM too old to build message better.

---------

Co-authored-by: NovaBot <[email protected]>
Co-authored-by: AnturK <[email protected]>
  • Loading branch information
3 people authored Mar 22, 2024
1 parent 83b6a98 commit 356fba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build/lib/byond.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export const DreamMaker = async (dmeFile, options = {}) => {
const major = Number(version[1]);
const minor = Number(version[2]);
if(major < requiredMajorVersion || major == requiredMajorVersion && minor < requiredMinorVersion){
Juke.logger.error(`${requiredMajorVersion}.${requiredMinorVersion} DM version required`)
Juke.logger.error(`${requiredMajorVersion}.${requiredMinorVersion} or later DM version required. Version ${major}.${minor} found at: ${dmPath}`)
throw new Juke.ExitCode(1);
}
}
Expand Down

0 comments on commit 356fba4

Please sign in to comment.