Fix @Storage.update() "subtract" and "subtraction"

This commit is contained in:
jianmingyong 2016-09-17 05:35:22 +08:00 committed by GitHub
parent 37fbec4334
commit 35007f893f
1 changed files with 2 additions and 2 deletions

View File

@ -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