Skip to content

Commit

Permalink
3.0.1: Fix a mock that was causing some players issues; ease validati…
Browse files Browse the repository at this point in the history
…on on PvP name field to permit spaces in names
  • Loading branch information
jpw1991 committed Aug 29, 2024
1 parent 6307d65 commit 8689fdf
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
3 changes: 2 additions & 1 deletion ChebsMercenaries/BasePlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ namespace ChebsMercenaries
[BepInPlugin(PluginGuid, PluginName, PluginVersion)]
[BepInDependency(Main.ModGuid)]
[NetworkCompatibility(CompatibilityLevel.EveryoneMustHaveMod, VersionStrictness.Minor)]
//[NetworkCompatibility(CompatibilityLevel.NotEnforced, VersionStrictness.None)]
public class BasePlugin : BaseUnityPlugin
{
public const string PluginGuid = "com.chebgonaz.chebsmercenaries";
public const string PluginName = "ChebsMercenaries";
public const string PluginVersion = "3.0.0";
public const string PluginVersion = "3.0.1";
private const string ConfigFileName = PluginGuid + ".cfg";
private static readonly string ConfigFileFullPath = Path.Combine(Paths.ConfigPath, ConfigFileName);

Expand Down
2 changes: 1 addition & 1 deletion ChebsMercenaries/ChebsMercenaries.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<AssemblyCulture>$(NeutralLanguage)</AssemblyCulture>

<!-- Version Information -->
<Version>3.0.0.0</Version>
<Version>3.0.1.0</Version>
<FileVersion>$(Version)</FileVersion>
<AssemblyVersion>$(Version)</AssemblyVersion>

Expand Down
8 changes: 4 additions & 4 deletions ChebsMercenaries/Package/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ Cheb's Mercenaries adds mercenaries to Valheim that you can purchase with gold a

It is related to my other mod called [Cheb's Necromancy](https://github.com/jpw1991/chebs-necromancy) and shares a lot of concepts and functionality. It's basically for people that want living human minions rather than the undead.

**Attention:** PvP is a new feature in 2.2.3 and needs testing. By default, it is disabled. To turn it on, set `PvPAllowed` to true in the config. Your minions should now be hostile to other players. Please report problems [here](https://github.com/jpw1991/chebs-mercenaries/pull/44).

## About Me

[![image1](https://imgur.com/Fahi6sP.png)](https://necrobase.chebgonaz.com)
Expand All @@ -14,7 +12,7 @@ It is related to my other mod called [Cheb's Necromancy](https://github.com/jpw1

I'm a YouTuber/Game Developer/Modder who is interested in all things necromancy and minion-related. Please check out my [YouTube channel](https://www.youtube.com/channel/UCPlZ1XnekiJxKymXbXyvkCg) and if you like the work I do and want to give back, please consider supporting me on [Patreon](https://www.patreon.com/chebgonaz?fan_landing=true) or throwing me a dime on [Ko-fi](https://ko-fi.com/chebgonaz). You can also check out my [website](https://necrobase.chebgonaz.com) where I host information on all known necromancy mods, games, books, videos and also some written reviews/guides.

Thank you and I hope you enjoy the mod! If you have questions or need help please join my [Discord](https://discord.com/invite/EB96ASQ).
Thank you and I hope you enjoy the mod! If you have questions or need help please contact me on [Discord](https://discord.gg/BweDFym6sc) and @ me so I see it.

### Bisect Hosting

Expand All @@ -30,7 +28,7 @@ a) Create an issue on my [GitHub](https://github.com/jpw1991/chebs-mercenaries).

b) Create a bug report on the [Nexus page](https://www.nexusmods.com/valheim/mods/2040?tab=bugs).

c) Write to me on [Discord](https://discord.com/invite/EB96ASQ).
c) Write to me on [Discord](https://discord.gg/BweDFym6sc).

d) Write a comment on the [Nexus page](https://www.nexusmods.com/valheim/mods/2040?tab=posts).

Expand Down Expand Up @@ -148,6 +146,8 @@ You can find the github [here](https://github.com/jpw1991/chebs-mercenaries).

Date | Version | Notes
--- | --- | ---
29/08/2024 | 3.0.1 | Fix a mock that was causing some players issues; ease validation on PvP name field to permit spaces in names
29/07/2024 | 3.0.0 | Overhaul of asset bundle and aesthetics
10/06/2024 | 2.4.1 | Implement spawning of catapult; add console command to spawn mercenaries in with armor
06/02/2024 | 2.4.0 | Add catapult
07/01/2024 | 2.3.0 | PvP with friends as exceptions implemented via console commands.
Expand Down
2 changes: 1 addition & 1 deletion ChebsMercenaries/Package/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ChebsMercenaries",
"description": "Cheb's Mercenaries adds mercenaries to Valheim that you can purchase with gold and upgrade with materials to fight (warriors, archers) or perform work (lumberjacks, miners).",
"version_number": "3.0.0",
"version_number": "3.0.1",
"website_url": "https://github.com/jpw1991/chebs-mercenaries",
"dependencies": [
"ValheimModding-Jotunn-2.20.1"
Expand Down
2 changes: 1 addition & 1 deletion ChebsMercenaries/PvPOptions/PvPOptionsGUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public static void TogglePanel()
fontSize: 16,
width: 200f,
height: 30f).GetComponentInChildren<InputField>();
_allyInput.characterValidation = InputField.CharacterValidation.Alphanumeric;
_allyInput.characterValidation = InputField.CharacterValidation.None;

GUIManager.Instance.CreateButton("+", parent: _panel.transform,
anchorMin: new Vector2(0.5f, 0.5f), anchorMax: new Vector2(0.5f, 0.5f),
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It is related to my other mod called [Cheb's Necromancy](https://github.com/jpw1

I'm a YouTuber/Game Developer/Modder who is interested in all things necromancy and minion-related. Please check out my [YouTube channel](https://www.youtube.com/channel/UCPlZ1XnekiJxKymXbXyvkCg) and if you like the work I do and want to give back, please consider supporting me on [Patreon](https://www.patreon.com/chebgonaz?fan_landing=true) or throwing me a dime on [Ko-fi](https://ko-fi.com/chebgonaz). You can also check out my [website](https://necrobase.chebgonaz.com) where I host information on all known necromancy mods, games, books, videos and also some written reviews/guides.

Thank you and I hope you enjoy the mod! If you have questions or need help please join my [Discord](https://discord.gg/BweDFym6sc).
Thank you and I hope you enjoy the mod! If you have questions or need help please contact me on [Discord](https://discord.gg/BweDFym6sc) and @ me so I see it.

### Bisect Hosting

Expand Down Expand Up @@ -146,7 +146,8 @@ You can find the github [here](https://github.com/jpw1991/chebs-mercenaries).

Date | Version | Notes
--- | --- | ---
29/09/2024 | 3.0.0 | Overhaul of asset bundle and aesthetics
29/08/2024 | 3.0.1 | Fix a mock that was causing some players issues; ease validation on PvP name field to permit spaces in names
29/07/2024 | 3.0.0 | Overhaul of asset bundle and aesthetics
10/06/2024 | 2.4.1 | Implement spawning of catapult; add console command to spawn mercenaries in with armor
06/02/2024 | 2.4.0 | Add catapult
07/01/2024 | 2.3.0 | PvP with friends as exceptions implemented via console commands.
Expand Down

0 comments on commit 8689fdf

Please sign in to comment.