Skip to content

Commit

Permalink
Bump to release 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zolantris committed Nov 11, 2024
1 parent cb766bd commit a4689c3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ValheimRAFT/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ automating it if you want to debug a build.)
| `recover` | Will recover any vanilla pieces on a raft. Pieces that are non-vanilla can be lost due to them not registering before the mod crashes and then the game deletes them as invalid content. Raft has a way to prevent this, but if raft bugs out it's going to not protect users. |
| `move` | Will teleport the raft and protect the players on the raft from being smashed out of the world...all players on the raft. If you are in the water outside the raft in the landing zone, you will die or get hit into space. Takes the arguements of `X Y Z` in decimal format. IE `0.0 0 -50` all work. And would take you zero (x) zero (y) and move you backwards by 50. Rembemer raft is relative so this will be relative coordinates to the raft. |
| `move-up` | Same as teleport but will allow moving the raft in the area upwards. |
| `rotate` | Will will attempt to force rotate the vehicle. This command may not work in 2.2.x - 2.4.0. |
| `rotate` | Will will attempt to force rotate the vehicle. |
| `toggleOceanSway` | Toggles ocean sway of vehicles. No more lurches only up and down. For those that are sea sick...or want to build but be moving. |
| `upgradeShipToV2` | Upgrades an older ValheimRAFT world ship to the V2 ship. This will fix a broken ship. V1 ships are deprecated and will be removed soon. Do not use them. They probably do not work for ashlands anymore either. |
| `downgradeToShipToV1` | Downgrades to an older v1 ship. Not supported. Do not do this. Support will be removed soon IE `3.x.x`. |
Expand Down
2 changes: 1 addition & 1 deletion src/ValheimRAFT/Thunderstore/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ValheimRAFT",
"version_number": "2.4.0",
"version_number": "2.4.1",
"website_url": "https://github.com/zolantris/ValheimMods/tree/main/src/ValheimRAFT",
"description": "ValheimRAFT - a water vehicles mod for valheim. V2 has new hulls,walls,slabs.",
"dependencies": [
Expand Down
2 changes: 1 addition & 1 deletion src/ValheimRAFT/ValheimRAFT.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<Platforms>AnyCPU</Platforms>
<PlatformTarget>AnyCPU</PlatformTarget>
<ApplicationVersion>2.4.0</ApplicationVersion>
<ApplicationVersion>2.4.1</ApplicationVersion>
<FileAlignment>512</FileAlignment>
<RootNamespace>ValheimRAFT</RootNamespace>
<LangVersion>latest</LangVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/ValheimRAFT/ValheimRAFT/ValheimRaftPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class ValheimRaftPlugin : BaseUnityPlugin
{
// ReSharper disable MemberCanBePrivate.Global
public const string Author = "zolantris";
public const string Version = "2.4.0";
public const string Version = "2.4.1";
public const string ModName = "ValheimRAFT";
public const string ModGuid = $"{Author}.{ModName}";
public static string HarmonyGuid => ModGuid;
Expand Down

0 comments on commit a4689c3

Please sign in to comment.