Ayuto / EventScripts-Emulator

A Source.Python plugin that is able to run EventScripts addons.
16 stars 9 forks source link

server_var() int conversion #10

Closed kamikazekuh closed 6 years ago

kamikazekuh commented 6 years ago

es_xset test_var 10_10_10 es_msg server_var(test_var)

This will message 101010 instead of 10_1010. If there are only and int numbers it will remove the _

if there is any other string included it will keep the original structure

Edit: It seems that _ is actually part of the integer class,

Ayuto commented 6 years ago

Yeah, I think this notation has been added with Python 3.6. I will take a look at it later.