mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-26 14:36:40 -04:00
adjusted a workaround for names starting with digits that interfered with some numerical expressions written without spaces
This commit is contained in:
parent
ae54f34f25
commit
435e52306a
@ -175,7 +175,7 @@ namespace Compiler
|
||||
{
|
||||
value += c;
|
||||
}
|
||||
else if (isStringCharacter (c))
|
||||
else if (c!='-' && isStringCharacter (c))
|
||||
{
|
||||
error = true;
|
||||
value += c;
|
||||
|
Loading…
x
Reference in New Issue
Block a user