BurgerLUA / burgerstation

My main project. This is the repository for the upcoming BYOND game Burgerstation. Currently in development.
Other
39 stars 118 forks source link

Use regex to remove all instances of var/ in proc args #677

Open Xander3359 opened 8 months ago

Xander3359 commented 8 months ago

What this PR does

So basically when you have a proc you need args in it /proc(args...)

You don't need var/arg This runs a regex to replace all instances of var/

You can do this yourself by running the following substitution Search: (^/[\w/][^ \t]+(.*)(var/|, ?var/.*)(.*)) Replace: $1$3