1
0
Fork 0

Add plan, server run data

main
reya 5 years ago
parent 1370fb66b0
commit 04cfa2f764
  1. 1
      .idea/gradle.xml
  2. 6
      TODO
  3. 17
      build.gradle

@ -10,6 +10,7 @@
<option value="$PROJECT_DIR$" />
</set>
</option>
<option name="useAutoImport" value="true" />
<option name="useQualifiedModuleNames" value="true" />
</GradleProjectSettings>
</option>

@ -0,0 +1,6 @@
* Boot server with plugin
* Detect a single glass block being placed
* Detect a glass frame being placed
* Detect a glass frame with a mineral block
* Transform the glass frame to stained glass
* Test portal block teleportation interruption

@ -34,6 +34,23 @@ bukkit {
main = "net.deliciousreya.minecraftportal.MinecraftPortalPlugin"
version = "0.1"
}
run {
// Core type. It can be 'spigot' or 'paper'
core = "paper"
// Accept EULA
eula = true
// Set online-mode flag
onlineMode = false
// Debug mode (listen 5005 port, if you use running from IDEA this option will be ignored)
debug = true
// Set server encoding (flag -Dfile.encoding)
encoding = "UTF-8"
// JVM arguments
javaArgs = "-Xmx1G"
// Bukkit arguments
bukkitArgs = ""
}
}
compileKotlin {

Loading…
Cancel
Save