Adds missing args for round/ceil/floor (#4899)

* Fixes #4898.
* Only missing one integer in parameter in BUILDIN_DEF2, already ready to read in the definition of the function.
Thanks to @Kreustoo!
This commit is contained in:
Kreustoo 2020-05-08 14:28:14 +02:00 committed by GitHub
parent 931155ee33
commit d1719f670f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25291,9 +25291,9 @@ struct script_function buildin_func[] = {
BUILDIN_DEF(getequiprefinecost,"iii?"),
BUILDIN_DEF2(round, "round", "i"),
BUILDIN_DEF2(round, "ceil", "i"),
BUILDIN_DEF2(round, "floor", "i"),
BUILDIN_DEF2(round, "round", "ii"),
BUILDIN_DEF2(round, "ceil", "ii"),
BUILDIN_DEF2(round, "floor", "ii"),
BUILDIN_DEF(getequiptradability, "i?"),
BUILDIN_DEF(mail, "isss*"),
BUILDIN_DEF(open_roulette,"?"),