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/plugins/entities.js
kabiroberai bb6bdbd57d Fixed a typo in entities.js
Fixed a typo in entities.js in which a comment said 'reuire' instead of 'require'
2016-05-28 20:17:27 +05:30

9 lines
251 B
JavaScript

'use strict';
/*global require, exports*/
/*
make entities a global variable for use at in-game prompt
Tab completion is a useful way to discover what entity types are available.
*/
var entities = require('entities');
exports.entities = entities;