From 3b9046955c5a786e591c8cb288ecc796efa20b43 Mon Sep 17 00:00:00 2001 From: 4n0n <4n0n@tinkr.site> Date: Mon, 16 Jan 2023 17:19:27 -0600 Subject: [PATCH] Rename --- scripts/outlaw.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/outlaw.lua b/scripts/outlaw.lua index dde58be..dde12aa 100644 --- a/scripts/outlaw.lua +++ b/scripts/outlaw.lua @@ -1,6 +1,6 @@ local Tinkr, Bastion = ... -local RestoModule = Bastion.Module:New('outlaw') +local OutlawModule = Bastion.Module:New('outlaw') local Evaluator = Tinkr.Util.Evaluator local Player = Bastion.UnitManager:Get('player') local None = Bastion.UnitManager:Get('none') @@ -445,7 +445,7 @@ AOEAPL:AddSpell( end):SetTarget(Target) ) -RestoModule:Sync(function() +OutlawModule:Sync(function() SpecialAPL:Execute() if Player:GetMeleeAttackers() > 1 then AOEAPL:Execute() @@ -454,4 +454,4 @@ RestoModule:Sync(function() end end) -Bastion:Register(RestoModule) +Bastion:Register(OutlawModule)