Implemented (exit)

This commit is contained in:
Devine Lu Linvega
2019-07-16 14:29:13 +09:00
parent 7a8e25b51b
commit 4358457b20
4 changed files with 7 additions and 31 deletions

View File

@@ -40,7 +40,6 @@ function Ronin () {
this.source.start()
this.commander.start()
this.surface.start()
console.log('Ronin', 'Started')
}
@@ -50,7 +49,7 @@ function Ronin () {
this.log = function (msg) {
console.log(msg)
this.commander.setStatus(msg)
this.commander.setStatus(msg.reduce((acc, val) => { return acc + val + ' ' }, ''))
}
this.load = function (content = this.default()) {