Skip to content

Commit

Permalink
- Mage pocket pet modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpleMQ2 committed Mar 10, 2024
1 parent 19f997c commit 377a89a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions class_configs/mag_class_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1199,12 +1199,20 @@ _ClassConfig = {
custom_func = function(self) return self.ClassConfig.HelperFunctions.pet_management(self) end,
},
{
name = "Companion's Suspension",
type = "AA",
name = "Engage Pocket Pet",
type = "CustomFunc",
cond = function(self)
if self.TempSettings.PocketPet == nil then self.TempSettings.PocketPet = false end
return self.TempSettings.PocketPet and RGMercUtils.GetSetting('DoPocketPet') and RGMercUtils.GetXTHaterCount() > 0
end,
custom_func = function(self)
if not self.TempSettings.Pocket then return false end

RGMercUtils.UseAA("Companion's Suspension", 0)
self.TempSettings.PocketPet = false

return true
end,
},
{
name = "Drop Cursor Items",
Expand Down
2 changes: 1 addition & 1 deletion extras/version.lua
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return { commitId = '8d5b5b0 2024-03-09' }
return { commitId = '19f997c 2024-03-10' }

0 comments on commit 377a89a

Please sign in to comment.