@screeps/engine
Version:
This is a module for Screeps standalone server. See [main repository](https://github.com/screeps/screeps) for more info.
20 lines (15 loc) • 458 B
JavaScript
;
var _ = require('lodash'),
utils = require('../../../utils'),
driver = utils.getDriver(),
C = driver.constants;
module.exports = function (object, intent, {}) {
if (!_.isString(intent.message)) {
return;
}
object.actionLog.say = {
message: intent.message.substring(0, 10),
isPublic: intent.isPublic
};
};
//# sourceMappingURL=../../../sourcemaps/processor/intents/power-creeps/say.js.map