diff --git a/Archipelago/ArchipelagoClient.cs b/Archipelago/ArchipelagoClient.cs
index 97f266c..b8ac2db 100644
--- a/Archipelago/ArchipelagoClient.cs
+++ b/Archipelago/ArchipelagoClient.cs
@@ -18,14 +18,14 @@ namespace MessengerRando.Archipelago
{
public static class ArchipelagoClient
{
- private const string ApVersion = "0.4.3";
+ private const string ApVersion = "0.4.4";
public static ArchipelagoData ServerData = new ArchipelagoData();
private delegate void OnConnectAttempt(string result);
public static bool Authenticated;
public static bool HasConnected;
private static bool attemptingConnection;
- public static bool offline;
+ public static bool Offline;
public static bool DisplayAPMessages = true;
public static bool FilterAPMessages = true;
@@ -409,9 +409,11 @@ public static void UpdateArchipelagoState()
Console.WriteLine(message);
DialogChanger.CreateDialogBox(message);
}
+
+ TrapManager.UpdateTrapStatus();
if (!Authenticated)
{
- if (offline) return;
+ if (Offline) return;
Console.WriteLine("Attempting to reconnect to Archipelago Server...");
ThreadPool.QueueUserWorkItem(_ => ConnectAsync());
return;
@@ -494,7 +496,7 @@ public static string UpdateStatusText()
text += $"\nHint points available: {Session.RoomState.HintPoints}\nHint point cost: {hintCost}";
}
}
- else if (offline)
+ else if (Offline)
{
text = "";
}
diff --git a/MessengerRando.csproj b/MessengerRando.csproj
index a68331e..7135938 100644
--- a/MessengerRando.csproj
+++ b/MessengerRando.csproj
@@ -11,7 +11,7 @@
v3.5
512
true
- 0.13.5
+ 0.14.0
diff --git a/courier.toml b/courier.toml
index 46b53cb..d4c61e7 100644
--- a/courier.toml
+++ b/courier.toml
@@ -1,5 +1,5 @@
name = "TheMessengerRandomizerAP"
-version = "0.13.5"
+version = "0.14.0"
dependencies = [
{ name = "Courier", version = "0.7.0" }
]