You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
There's inconsistency on if commands are case sensitive or not - I can have whatever case of "/examine" and that part of a command will work fine. If I try and "/eXamInE jukebox" in a room with a "Jukebox" then the command will fail, because despite the lack of case sensitivity on the command there is case sensitivity on the objects. Surely sanitising input text to always be lower case would effectively enforce case insensitive interaction with rooms?
Otherwise somewhere needs to warn the user that although the commands are case insensitive the parameters for commands are case sensitive.
The text was updated successfully, but these errors were encountered:
You can universally downcase if the input starts with a "/" - from a user pov is is frustrating not knowing if I should be case sensitive or not as the game is giving mixed messages (either make commands case sensitive so it's clear I should worry everywhere, or solve the sensitivity for params entered).
There's inconsistency on if commands are case sensitive or not - I can have whatever case of "/examine" and that part of a command will work fine. If I try and "/eXamInE jukebox" in a room with a "Jukebox" then the command will fail, because despite the lack of case sensitivity on the command there is case sensitivity on the objects. Surely sanitising input text to always be lower case would effectively enforce case insensitive interaction with rooms?
Otherwise somewhere needs to warn the user that although the commands are case insensitive the parameters for commands are case sensitive.
The text was updated successfully, but these errors were encountered: