Skip to content

Commit 6a695e6

Browse files
committed
fix: Player teleport function
1 parent 0e58e0b commit 6a695e6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

scripts/LocationsManager.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ function LocationsManager.LoadLocation(Name)
115115
LogDebug("LoadLocation: TeleportPlayer to: " .. VectorToString(location.Location))
116116
location.Rotation = location.Rotation or FRotator()
117117
location.Rotation.Roll = 0.0
118-
local success = myPlayer:TeleportPlayer(location.Location, FRotator())
118+
local success = myPlayer:TeleportPlayer(location.Location, FRotator(), true)
119119
if success then
120120
AFUtils.SetControlRotation(location.Rotation)
121121
end

scripts/SettingsManager.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ function SettingsManager.AutoSaveOnChange()
113113
or SettingsMonitor.LeyakCooldown ~= Settings.LeyakCooldown
114114
or SettingsMonitor.SpeedhackMultiplier ~= Settings.SpeedhackMultiplier
115115
or SettingsMonitor.PlayerGravityScale ~= Settings.PlayerGravityScale
116-
or (Settings.Locations and SettingsMonitor.LocationsCount ~= #Settings.Locations)
117116
or SettingsMonitor.InfiniteCrouchRoll ~= Settings.InfiniteCrouchRoll
117+
or (Settings.Locations and SettingsMonitor.LocationsCount ~= #Settings.Locations)
118118
then
119119
LogDebug("AutoSaveOnChange: Changes detected")
120120
SettingsMonitor.GodMode = Settings.GodMode
@@ -143,8 +143,8 @@ function SettingsManager.AutoSaveOnChange()
143143
SettingsMonitor.LeyakCooldown = Settings.LeyakCooldown
144144
SettingsMonitor.SpeedhackMultiplier = Settings.SpeedhackMultiplier
145145
SettingsMonitor.PlayerGravityScale = Settings.PlayerGravityScale
146-
SettingsMonitor.LocationsCount = Settings.Locations and #Settings.Locations or 0
147146
SettingsMonitor.InfiniteCrouchRoll = Settings.InfiniteCrouchRoll
147+
SettingsMonitor.LocationsCount = Settings.Locations and #Settings.Locations or 0
148148
SettingsManager.SaveToFile()
149149
end
150150
end

scripts/main.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ local AFUtils = require("AFUtils.AFUtils")
1111
local UEHelpers = require("UEHelpers")
1212

1313
ModName = "CheatConsoleCommands"
14-
ModVersion = "1.17.0"
14+
ModVersion = "1.17.1"
1515
DebugMode = true
1616
IsModEnabled = true
1717

0 commit comments

Comments
 (0)