minor quick changes

This commit is contained in:
2025-12-29 00:02:28 -05:00
parent bda721b2de
commit dce10bb02e
2 changed files with 4 additions and 2 deletions

View File

@ -13,7 +13,7 @@ local config = {}
config.gatespeed = 0.5 config.gatespeed = 0.5
-- Manual dial for Milky Way gates (rotating ring animation) -- Manual dial for Milky Way gates (rotating ring animation)
config.manualDial = true config.manualDial = false
-- Access control -- Access control
config.canAccessHazardGates = true config.canAccessHazardGates = true

View File

@ -223,7 +223,9 @@ end
--------------------------------------------- ---------------------------------------------
local function dialGate(address) local function dialGate(address)
utils.log("Dialing: " .. gate.addressToString(address)) tmp = deepCopy(address)
table.remove(tmp)
utils.log("Dialing: " .. gate.addressToString(tmp))
local gateType = gate.getStargateType() local gateType = gate.getStargateType()