Changes between Version 24 and Version 25 of Modding_Guide


Ignore:
Timestamp:
Nov 28, 2017, 7:37:36 PM (6 years ago)
Author:
elexis
Comment:

Fix wrong equal comparison operator (that is also incorrectly documented in the code. Don't change the operator in the code to avoid breaking mods and don't introduce a second equal operator)

Legend:

Unmodified
Added
Removed
Modified
  • Modding_Guide

    v24 v25  
    7979}}}
    8080
    81 There are also the `url` and `type` properties which are optional. `name` must be unique and must not contain whitespace. `dependencies` is an array that contains the `name` of mods it depends on, optionally with version constraints (<,<=,==,>=,>) and the versions of the dependency.
     81There are also the `url` and `type` properties which are optional. `name` must be unique and must not contain whitespace. `dependencies` is an array that contains the `name` of mods it depends on, optionally with version constraints (<,<=,=,>=,>) and the versions of the dependency.
    8282
    8383For details of how the dependency checking is done please read the function comments in [source:ps/trunk/binaries/data/mods/mod/gui/modmod/modmod.js modmod.js].