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
If there is an even number of quotes in the arguments of a command, the outer pair is always removed. The string a "string with "quotes"" becomes a string with "quotes", for example. This is not always desirable (see PGMDev/PGM#259).
When you have "some argument" it's fine if it gets parsed as a single arg if it's between ", the issue comes with @Text arguments where it should consume all remaining input, and shouldn't be trying to parse strings inside there
If there is an even number of quotes in the arguments of a command, the outer pair is always removed. The string
a "string with "quotes""
becomesa string with "quotes"
, for example. This is not always desirable (see PGMDev/PGM#259).This appears to be the cause of the problem:
intake/core/src/main/java/app/ashcon/intake/argument/CommandContext.java
Lines 108 to 140 in 5967b51
The text was updated successfully, but these errors were encountered: