Skip to content

Commit

Permalink
remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
dit-zy committed Nov 20, 2023
1 parent fa9ec82 commit 3c07326
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ScoutHelper/Managers/HuntHelperManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private void CheckVersion(uint? version = null) {
Available = false;
}
}
catch (IpcNotReadyError e) {
catch (IpcNotReadyError) {
Plugin.Log.Info("Hunt Helper is not yet available. Disabling support until it is.");
Available = false;
}
Expand All @@ -75,7 +75,7 @@ public Result<List<TrainMob>, string> GetTrainList() {
try {
return _cgGetTrainList.InvokeFunc();
}
catch (IpcNotReadyError e) {
catch (IpcNotReadyError) {
Plugin.Log.Warning("Hunt Helper appears to have disappeared ;-;. Can't get the train data ;-;. Disabling support until it comes back.");
Available = false;
return "Hunt Helper has disappeared from my sight ;-;";
Expand Down

0 comments on commit 3c07326

Please sign in to comment.