StreamAttack: fixed missing jumpTarget distance output

This commit is contained in:
alterNERDtive 2020-10-23 01:26:36 +02:00
parent 6633af6060
commit a23dd5816f
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ namespace alterNERDtive
Process p = PythonProxy.SetupPythonScript(path, arguments);
decimal distance = 0; // sadly currently you cant pass decimals to a command by value … so as a string it is.
decimal distance = 0;
bool error = false;
string errorMessage = "";
@ -65,7 +65,7 @@ namespace alterNERDtive
switch (p.ExitCode)
{
case 0:
distance = Decimal.Parse(output);
distance = decimal.Parse(output);
break;
case 1:
case 2:

Binary file not shown.