Quick fix. Modify LoadConfigMap in RDCConnector module
'Private Sub LoadConfigMap As Map
' Return File.ReadMap(File.DirAssets, "config.properties")
'End Sub
Private Sub LoadConfigMap As Map
If File.Exists(File.DirApp, "config.properties") = False Then
File.Copy(File.DirAssets, "config.properties", File.DirApp, "config.properties")
End If
Return File.ReadMap(File.DirApp, "config.properties")
End Sub
The first time you run the server, it will copy the asset folder's config.properties file to the same location as the server jar file. After that, as long as config.properties exists at the same location as the server's jar file, it will use that config.properties file.
Additional notes:
1) You still have to restart the server in order for changes to be effective.
2) File.DirApp may not work on Windows (depending on where server jar file is located). In that case, File.DirData would be a better choice.
3) Remember, this is just a quick fix, not a comprehensive solution.