rem-bot-industries / rem-v2

Well, this is the rewrite of rem, now even cleaner and hopefully with less bugs
Apache License 2.0
79 stars 43 forks source link

Rem returns TypeError when starting #133

Closed yom21c1020 closed 7 years ago

yom21c1020 commented 7 years ago

I trying to run Rem on my own server. But I starting Rem, it returns TypeError: Cannot read property 'on' of null at MOD.init.then (./src/shard.js:171:17). Can I fix it?

DasWolke commented 7 years ago

Mind sending me a screenshot of the full stacktrace ?

yom21c1020 commented 7 years ago

Full stacktrace here. image

DasWolke commented 7 years ago

Alright, in /Rem/src/index.js, at line 106 edit this: client = new Shard(0, 1, null, Raven); to this: client = new Shard(0, 1, undefined, Raven); then run npm run build again

yom21c1020 commented 7 years ago

Thanks! I'll try that.