fix bug where !set arguments would be cast to float then back to int

This commit is contained in:
jacob1 2014-10-08 00:35:50 -04:00
parent c16caed5dd
commit 16522056fb

View File

@ -271,7 +271,7 @@ AnyType TPTScriptInterface::tptS_set(std::deque<std::string> * words)
float newValuef;
if (value.GetType() == TypeNumber)
{
newValue = newValuef = ((NumberType)value).Value();
newValuef = newValue = ((NumberType)value).Value();
}
else if (value.GetType() == TypeFloat)
{