Initial version of FinchWorld and TungstonsDumper

This commit is contained in:
Andrew Miner
2025-09-06 22:08:17 -06:00
parent 6ebc151742
commit 5098847b06
4 changed files with 554 additions and 9 deletions
+3 -1
View File
@@ -7,8 +7,10 @@ namespace Oxide.Plugins {
[Description("Re-read the server configs after loading to override gamemode settings")]
public class RereadConfigs : RustPlugin {
private const float DELAY = 10f;
void OnServerInitialized() {
timer.Once(10f, () => {
timer.Once(DELAY, () => {
Server.Command("server.readcfg");
});
}