ThePix / QuestJS

A major re-write of Quest that is written in JavaScript and will run in the browser.
MIT License
66 stars 13 forks source link

BUG (and fix?) - handlePutInContainer #46

Closed KVonGit closed 3 years ago

KVonGit commented 3 years ago

https://github.com/KVonGit/Quest6Game1/blob/47c170c65174b4374d705c4028a2a03770e6a3ae/lib/_commands.js#L1325

    failedmsg(lang.not_container(char, container));

I changed that to this:

    failedmsg(lang.not_container, {char, container});

Also, in related news:

https://github.com/KVonGit/Quest6Game1/blob/47c170c65174b4374d705c4028a2a03770e6a3ae/lang/lang-en.js#L198

This is the only line I find the word 'containter'.

ThePix commented 3 years ago

Fixed, thanks