Add current state of development
This commit is contained in:
@@ -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");
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user