From 72b075bf7bf5c9abfc1544f8733a07f0220cc2a8 Mon Sep 17 00:00:00 2001 From: Downforce Agent Date: Wed, 8 May 2024 07:21:53 -0500 Subject: [PATCH] cleanup residual file ahead of time --- src/Gonzo.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Gonzo.java b/src/Gonzo.java index 3472aec..947e54f 100644 --- a/src/Gonzo.java +++ b/src/Gonzo.java @@ -181,6 +181,10 @@ public class Gonzo { } } } + + // cleanup so we don't run it again for the next mod unless needed + // this is not necessary but good practice + new File(System.getProperty("user.home") + "/.firestar/temp/delete.txt").delete(); } } catch (Exception e) { System.out.println(e.getMessage());