= Made table name generic

This commit is contained in:
Matthew Cech
2019-05-23 01:12:32 -07:00
parent b71debb9d2
commit 7fefa5f89c
2 changed files with 21 additions and 13 deletions
+11 -11
View File
@@ -68,6 +68,17 @@ public class Superintendent
return true;
}
// Only called once per command. Good for lazily updating.
// Happens just before the command / plugin runs.
public static boolean PerCommandUpkeepPre()
{
// Upkeep localization system's file monitoring
LocStrings.Upkeep();
LocCommands.Upkeep();
return true;
}
// This is for stuff that we need to do on a regular basis, but don't
// necessarily want running at all points in time.
// Happens just after the command / plugin runs.
@@ -81,15 +92,4 @@ public class Superintendent
return true;
}
// Only called once per command. Good for lazily updating.
// Happens just before the command / plugin runs.
public static boolean PerCommandUpkeepPre()
{
// Upkeep localization system's file monitoring
LocStrings.Upkeep();
LocCommands.Upkeep();
return true;
}
}