Lowercase lua extension check

This commit is contained in:
Tixx
2025-04-19 21:59:50 +02:00
parent 10ea0cf59e
commit a5ca50866f
3 changed files with 9 additions and 1 deletions

View File

@@ -57,7 +57,7 @@ void TPluginMonitor::operator()() {
mFileTimes[Pair.first] = CurrentTime;
// grandparent of the path should be Resources/Server
if (fs::equivalent(fs::path(Pair.first).parent_path().parent_path(), mPath)) {
if (fs::path(Pair.first).extension() == ".lua") {
if (LowerString(fs::path(Pair.first).extension().string()) == ".lua") {
beammp_infof("File \"{}\" changed, reloading", Pair.first);
// is in root folder, so reload
std::ifstream FileStream(Pair.first, std::ios::in | std::ios::binary);