Skip to content

Commit 50093eb

Browse files
committed
Updated KCM error text
1 parent bc36345 commit 50093eb

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

API.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<AssemblyName>API</AssemblyName>
55
<Description>An API for inscryption</Description>
6-
<Version>1.13.2.0</Version>
6+
<Version>1.13.3.0</Version>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
88
<LangVersion>9.0</LangVersion>
99
<DebugType>full</DebugType>

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v1.13.3-nonkc
4+
- Updated KCM error text.
5+
36
## v1.13.2-nonkc
47
- Using normal API with Kaycee's Mod now shows an error.
58

Plugin.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public partial class Plugin : BaseUnityPlugin
1717
{
1818
private const string PluginGuid = "cyantist.inscryption.api";
1919
private const string PluginName = "API";
20-
private const string PluginVersion = "1.13.2";
20+
private const string PluginVersion = "1.13.3";
2121

2222
internal static ManualLogSource Log;
2323
internal static ConfigEntry<bool> configEnergy;
@@ -53,7 +53,7 @@ private IEnumerator KayceeError()
5353
yield return new WaitUntil(() => asyncOp.isDone);
5454
GameObject[] objects = SceneManager.GetSceneByName("CorruptedSaveMessage").GetRootGameObjects();
5555
TextMeshProUGUI text = objects.ToList().Find(name => name.name == "Screen").GetComponentInChildren<TextMeshProUGUI>();
56-
text.text = "Oh no! It looks like you're using the <color=#FB3F4F>normal API</color>\nfor Kaycee's Mod.\nYou need to use Kaycee's API if you want to use\nmods for Kaycee's Mod, or switch back to the base\ngame through Steam.\nKeep in mind that some mods may require a\ndifferent version to work, or are entirely\nincompatible with Kaycee's Mod.\n\n(Press Escape to quit)";
56+
text.text = "Oh no! It looks like you're using the <color=#FB3F4F>normal API</color>\nfor Kaycee's Mod.\nYou need to use Kaycee's API if you want to use\nmods for Kaycee's Mod, or switch back to the base\ngame through Steam. Kaycee's API be\nfound in the <color=#FB3F4F>Inscryption Modding Discord\n#mod-showcase</color> channel.\nKeep in mind that some mods may require a\ndifferent version to work, or are entirely\nincompatible with Kaycee's Mod.\n\n(Press Escape to quit)";
5757
}
5858

5959
private void Start()

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "API",
3-
"version_number": "1.13.2",
3+
"version_number": "1.13.3",
44
"website_url": "https://github.com/ScottWilson0903/InscryptionAPI",
55
"description": "This plugin is a BepInEx plugin made for Inscryption as an API. It can currently create custom cards and abilities and inject them into the data pool, or modify existing cards in the card pool.",
66
"dependencies": [

0 commit comments

Comments
 (0)