Skip to content

Commit 469c850

Browse files
committed
Merge branch 'dev'
2 parents eba0383 + 464f422 commit 469c850

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

EXILED/EXILED.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<PropertyGroup>
1717
<!-- This is the global version and is used for all projects that don't have a version -->
18-
<Version Condition="$(Version) == ''">9.11.0</Version>
18+
<Version Condition="$(Version) == ''">9.11.2</Version>
1919
<!-- Enables public beta warning via the PUBLIC_BETA constant -->
2020
<PublicBeta>false</PublicBeta>
2121

EXILED/Exiled.API/Features/Items/Jailbird.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ public float ConcussionDuration
8484
}
8585

8686
/// <summary>
87-
/// Gets or sets the radius of the Jailbird's hit register.
87+
/// Gets or sets the radius of the Jailbird's hit radius.
8888
/// </summary>
8989
public float Radius
9090
{
91-
get => Radius;
92-
set => Radius = value;
91+
get => Base._hitregRadius;
92+
set => Base._hitregRadius = value;
9393
}
9494

9595
/// <summary>

EXILED/Exiled.Loader/Updater.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ private void Update(HttpClient client, NewVersion newVersion)
229229
FileName = installerPath,
230230
UseShellExecute = false,
231231
CreateNoWindow = true,
232-
Arguments = $"--exit {(Folder == "global" ? string.Empty : $"--target-port {Folder}")} --target-version {newVersion.Release.TagName} --appdata \"{Paths.AppData}\" --exiled \"{config.ExiledDirectoryPath}\" {(newVersion.IsPrerelease ? "--pre-releases" : string.Empty)}",
232+
Arguments = $"--exit {(Folder == "global" ? string.Empty : $"--target-port {Folder}")} --target-version {newVersion.Release.TagName} --appdata \"{Paths.AppData}\" --exiled \"{Path.Combine(config.ExiledDirectoryPath, "..")}\" {(newVersion.IsPrerelease ? "--pre-releases" : string.Empty)}",
233233
RedirectStandardOutput = true,
234234
RedirectStandardError = true,
235235
StandardErrorEncoding = ProcessEncoding,

0 commit comments

Comments
 (0)