diff options
author | modmuss50 <modmuss50@gmail.com> | 2018-12-19 23:06:06 +0000 |
---|---|---|
committer | modmuss50 <modmuss50@gmail.com> | 2018-12-19 23:06:06 +0000 |
commit | 4731589579c899d454d1a9a6ef82f99a748ff9f1 (patch) | |
tree | d5c7b6a363d573fad4a52efd57f9b0d03282545c /src/main/resources/idea_run_config_template.xml | |
parent | 278c8d2401164a6e050f5b77f3a827cc75b7a9e3 (diff) | |
download | architectury-loom-4731589579c899d454d1a9a6ef82f99a748ff9f1.tar.gz architectury-loom-4731589579c899d454d1a9a6ef82f99a748ff9f1.tar.bz2 architectury-loom-4731589579c899d454d1a9a6ef82f99a748ff9f1.zip |
Default idea's run config (when importing with idea's gradle tools) to use the _main module. Not a perfect fix but will now work with the default import settings.
Diffstat (limited to 'src/main/resources/idea_run_config_template.xml')
-rw-r--r-- | src/main/resources/idea_run_config_template.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/idea_run_config_template.xml b/src/main/resources/idea_run_config_template.xml index 6f2e975f..8d203fe8 100644 --- a/src/main/resources/idea_run_config_template.xml +++ b/src/main/resources/idea_run_config_template.xml @@ -1,7 +1,7 @@ <component name="ProjectRunConfigurationManager"> <configuration default="false" name="%NAME%" type="Application" factoryName="Application"> <option name="MAIN_CLASS_NAME" value="%MAIN_CLASS%" /> - <module name="%MODULE%" /> + <module name="%MODULE%_main" /> <option name="PROGRAM_PARAMETERS" value="%PROGRAM_ARGS%" /> <option name="VM_PARAMETERS" value="%VM_ARGS%" /> <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$/run/" /> |