Add current state of development

This commit is contained in:
Andrew Miner
2025-09-02 21:23:59 -06:00
parent cd2fd3bea8
commit fb58946028
5 changed files with 609 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using Oxide.Core.Plugins;
using UnityEngine;
namespace Oxide.Plugins {
[Info("RereadConfigs", "TungstonMiner", "0.1.0")]
[Description("Re-read the server configs after loading to override gamemode settings")]
public class RereadConfigs : RustPlugin {
void OnServerInitialized() {
timer.Once(10f, () => {
Server.Command("server.readcfg");
});
}
}
}