mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-19 22:37:43 +01:00
add comments
This commit is contained in:
parent
fab122bb30
commit
f6b1e44a00
1 changed files with 5 additions and 1 deletions
|
|
@ -59,7 +59,11 @@ namespace Dalamud.Bootstrap.SqexArg
|
||||||
var escapedKey = EscapeValue(key);
|
var escapedKey = EscapeValue(key);
|
||||||
var escapedvalue = EscapeValue(value);
|
var escapedvalue = EscapeValue(value);
|
||||||
|
|
||||||
buffer.Append($" /{escapedKey} ={escapedvalue}"); // TODO: this is broken
|
// TODO: (from chat)
|
||||||
|
// This line, the = in your version has a space before it
|
||||||
|
// If you're sending the arguments in plaintext, game doesn't like the space there
|
||||||
|
// (But I think it needs to be there in crypted args)
|
||||||
|
buffer.Append($" /{escapedKey} ={escapedvalue}"); // TODO: thanks SE
|
||||||
}
|
}
|
||||||
|
|
||||||
private static string EscapeValue(string value)
|
private static string EscapeValue(string value)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue