Fix @Storage.update() "subtract" and "subtraction"
This commit is contained in:
parent
37fbec4334
commit
35007f893f
|
@ -33,7 +33,7 @@
|
|||
Else
|
||||
value = currentValue & value
|
||||
End If
|
||||
Case "-", "minus", "substract", "substraction"
|
||||
Case "-", "minus", "subtract", "subtraction"
|
||||
value = dbl(currentValue.Replace(".", GameController.DecSeparator) & "-" & value.Replace(".", GameController.DecSeparator)).ToString()
|
||||
Case "*", "multiply", "multiplication"
|
||||
value = dbl(currentValue.Replace(".", GameController.DecSeparator) & "*" & value.Replace(".", GameController.DecSeparator)).ToString()
|
||||
|
@ -54,4 +54,4 @@
|
|||
|
||||
End Class
|
||||
|
||||
End Namespace
|
||||
End Namespace
|
||||
|
|
Loading…
Reference in New Issue