This repository has been archived on 2021-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
scriptcraft/src/main/js/modules/items.js
walterhiggins 19162c3688 First phase of transition from Bukkit to Canary.
Some of the plugins are not yet supported.
If you're feeling brave you can build from source using ant.
2014-09-29 23:42:41 +01:00

6 lines
126 B
JavaScript

if (__plugin.canary) {
module.exports = require('./canary/items');
} else {
module.exports = require('./bukkit/items');
}