Files
rust/oxide/plugins/RereadConfigs.cs
T

17 lines
423 B
C#

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");
});
}
}
}