Hello guys,
I would like to know if ULib.cmds.NumArg could be 0.5 (like not rounded)
Here's the code :
cmd = ULib.cmds.TranslateCommand( "ugm slap", ULib.slap )
cmd:addParam{ type=ULib.cmds.PlayerArg, target="*", default="^", ULib.cmds.optional }
cmd:addParam{ type=ULib.cmds.NumArg, min=0, default=0, ULib.cmds.optional }
It is always 0 for 0.4 and always 1 for 0.5 !
Thank you guys