GnaspGames / Smelt

A CLI tool for Minecraft map makers
http://smelt.gnasp.com
MIT License
19 stars 4 forks source link

!reset_objective is broken #61

Closed GnaspGames closed 8 years ago

GnaspGames commented 8 years ago

Error is:

ReferenceError: args is not defined
    at Object.ResetObjective.Execute (**removed**\node_modules\smelt-cli\plugins\reset_objective.js:20:2)

Need to change this:

    // Remove name and criteria from args.
    args.shift();
    args.shift();

to this:

    // Remove name and criteria from args.
    smelt.args.shift();
    smelt.args.shift();