AmirrezaJaberi / FIREAC

✅ FiveM Strongest Anticheat
GNU Affero General Public License v3.0
161 stars 52 forks source link

Fix variable initialization #95

Closed Scaarus closed 5 months ago

Scaarus commented 5 months ago

Previously the one-liner for multiple variable initializations was referencing other variables in the same one-liner. This isn't allowed in LUA, it will use that variables previous value or nil if it didn't exist.

By setting OWNER separately, we can keep the rest of the one-liner.

Fixes #91

Scaarus commented 5 months ago

Also fixes #90 (91 is a dupe)