├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .idea ├── .gitignore ├── PhysicsToGo.iml ├── compiler.xml ├── encodings.xml ├── hotswap_agent.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jarRepositories.xml ├── libraries │ ├── Maven__io_netty_netty_buffer_4_1_85_Final.xml │ ├── Maven__io_netty_netty_codec_4_1_85_Final.xml │ ├── Maven__io_netty_netty_common_4_1_85_Final.xml │ ├── Maven__io_netty_netty_resolver_4_1_85_Final.xml │ ├── Maven__io_netty_netty_transport_4_1_85_Final.xml │ ├── Maven__io_netty_netty_transport_native_unix_common_4_1_85_Final.xml │ ├── Maven__it_unimi_dsi_fastutil_8_5_6.xml │ └── Maven__org_apache_logging_log4j_log4j_api_2_17_0.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CNAME ├── LICENSE ├── README.md ├── docs ├── allclasses-frame.html ├── allclasses-noframe.html ├── constant-values.html ├── deprecated-list.html ├── help-doc.html ├── index-files │ ├── index-1.html │ ├── index-10.html │ ├── index-11.html │ ├── index-12.html │ ├── index-13.html │ ├── index-14.html │ ├── index-15.html │ ├── index-16.html │ ├── index-17.html │ ├── index-18.html │ ├── index-2.html │ ├── index-3.html │ ├── index-4.html │ ├── index-5.html │ ├── index-6.html │ ├── index-7.html │ ├── index-8.html │ └── index-9.html ├── index.html ├── overview-frame.html ├── overview-summary.html ├── overview-tree.html ├── package-list ├── script.js ├── stylesheet.css └── xzot1k │ └── plugins │ └── ptg │ ├── PhysicsToGo.html │ ├── core │ ├── Manager.html │ ├── enums │ │ ├── ActionType.html │ │ ├── TreeType.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── hooks │ │ ├── FactionsHook.html │ │ ├── LandsHook.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── objects │ │ ├── LocationClone.html │ │ ├── SaplingData.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── package-frame.html │ ├── package-summary.html │ ├── package-tree.html │ └── tasks │ │ ├── BlockRegenerationTask.html │ │ ├── TreePhysicsTask.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── events │ ├── PhysicsActionEvent.html │ ├── RegenerateEvent.html │ ├── package-frame.html │ ├── package-summary.html │ └── package-tree.html │ ├── package-frame.html │ ├── package-summary.html │ └── package-tree.html ├── pom.xml └── src └── main ├── java └── xzot1k │ └── plugins │ └── ptg │ ├── PhysicsToGo.java │ ├── core │ ├── Commands.java │ ├── Listeners.java │ ├── Manager.java │ ├── enums │ │ ├── ActionType.java │ │ └── TreeType.java │ ├── hooks │ │ ├── CoreProtectHook.java │ │ ├── FactionsHook.java │ │ ├── LandsHook.java │ │ └── WorldGuardHook.java │ ├── objects │ │ ├── LocationClone.java │ │ ├── Pair.java │ │ └── SaplingData.java │ └── tasks │ │ ├── BlockRegenerationTask.java │ │ └── TreePhysicsTask.java │ └── events │ ├── PhysicsActionEvent.java │ └── RegenerateEvent.java └── resources ├── LICENSE ├── advanced.yml ├── config.yml ├── lang.yml └── plugin.yml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/PhysicsToGo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/PhysicsToGo.iml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/hotswap_agent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/hotswap_agent.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__io_netty_netty_buffer_4_1_85_Final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/libraries/Maven__io_netty_netty_buffer_4_1_85_Final.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__io_netty_netty_codec_4_1_85_Final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/libraries/Maven__io_netty_netty_codec_4_1_85_Final.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__io_netty_netty_common_4_1_85_Final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/libraries/Maven__io_netty_netty_common_4_1_85_Final.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__io_netty_netty_resolver_4_1_85_Final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/libraries/Maven__io_netty_netty_resolver_4_1_85_Final.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__io_netty_netty_transport_4_1_85_Final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/libraries/Maven__io_netty_netty_transport_4_1_85_Final.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__io_netty_netty_transport_native_unix_common_4_1_85_Final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/libraries/Maven__io_netty_netty_transport_native_unix_common_4_1_85_Final.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__it_unimi_dsi_fastutil_8_5_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/libraries/Maven__it_unimi_dsi_fastutil_8_5_6.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_17_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_17_0.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | ptg-docs.zotware.dev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/README.md -------------------------------------------------------------------------------- /docs/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/allclasses-frame.html -------------------------------------------------------------------------------- /docs/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/constant-values.html -------------------------------------------------------------------------------- /docs/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/deprecated-list.html -------------------------------------------------------------------------------- /docs/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/help-doc.html -------------------------------------------------------------------------------- /docs/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-1.html -------------------------------------------------------------------------------- /docs/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-10.html -------------------------------------------------------------------------------- /docs/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-11.html -------------------------------------------------------------------------------- /docs/index-files/index-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-12.html -------------------------------------------------------------------------------- /docs/index-files/index-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-13.html -------------------------------------------------------------------------------- /docs/index-files/index-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-14.html -------------------------------------------------------------------------------- /docs/index-files/index-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-15.html -------------------------------------------------------------------------------- /docs/index-files/index-16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-16.html -------------------------------------------------------------------------------- /docs/index-files/index-17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-17.html -------------------------------------------------------------------------------- /docs/index-files/index-18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-18.html -------------------------------------------------------------------------------- /docs/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-2.html -------------------------------------------------------------------------------- /docs/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-3.html -------------------------------------------------------------------------------- /docs/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-4.html -------------------------------------------------------------------------------- /docs/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-5.html -------------------------------------------------------------------------------- /docs/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-6.html -------------------------------------------------------------------------------- /docs/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-7.html -------------------------------------------------------------------------------- /docs/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-8.html -------------------------------------------------------------------------------- /docs/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index-files/index-9.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/overview-frame.html -------------------------------------------------------------------------------- /docs/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/overview-summary.html -------------------------------------------------------------------------------- /docs/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/overview-tree.html -------------------------------------------------------------------------------- /docs/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/package-list -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/script.js -------------------------------------------------------------------------------- /docs/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/stylesheet.css -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/PhysicsToGo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/PhysicsToGo.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/Manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/Manager.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/enums/ActionType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/enums/ActionType.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/enums/TreeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/enums/TreeType.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/enums/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/enums/package-frame.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/enums/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/enums/package-summary.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/enums/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/enums/package-tree.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/hooks/FactionsHook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/hooks/FactionsHook.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/hooks/LandsHook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/hooks/LandsHook.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/hooks/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/hooks/package-frame.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/hooks/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/hooks/package-summary.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/hooks/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/hooks/package-tree.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/objects/LocationClone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/objects/LocationClone.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/objects/SaplingData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/objects/SaplingData.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/objects/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/objects/package-frame.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/objects/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/objects/package-summary.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/objects/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/objects/package-tree.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/package-frame.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/package-summary.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/package-tree.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/tasks/BlockRegenerationTask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/tasks/BlockRegenerationTask.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/tasks/TreePhysicsTask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/tasks/TreePhysicsTask.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/tasks/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/tasks/package-frame.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/tasks/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/tasks/package-summary.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/core/tasks/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/core/tasks/package-tree.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/events/PhysicsActionEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/events/PhysicsActionEvent.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/events/RegenerateEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/events/RegenerateEvent.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/events/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/events/package-frame.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/events/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/events/package-summary.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/events/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/events/package-tree.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/package-frame.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/package-summary.html -------------------------------------------------------------------------------- /docs/xzot1k/plugins/ptg/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/docs/xzot1k/plugins/ptg/package-tree.html -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/PhysicsToGo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/PhysicsToGo.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/Commands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/Commands.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/Listeners.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/Listeners.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/Manager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/Manager.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/enums/ActionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/enums/ActionType.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/enums/TreeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/enums/TreeType.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/hooks/CoreProtectHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/hooks/CoreProtectHook.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/hooks/FactionsHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/hooks/FactionsHook.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/hooks/LandsHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/hooks/LandsHook.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/hooks/WorldGuardHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/hooks/WorldGuardHook.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/objects/LocationClone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/objects/LocationClone.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/objects/Pair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/objects/Pair.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/objects/SaplingData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/objects/SaplingData.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/tasks/BlockRegenerationTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/tasks/BlockRegenerationTask.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/core/tasks/TreePhysicsTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/core/tasks/TreePhysicsTask.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/events/PhysicsActionEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/events/PhysicsActionEvent.java -------------------------------------------------------------------------------- /src/main/java/xzot1k/plugins/ptg/events/RegenerateEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/java/xzot1k/plugins/ptg/events/RegenerateEvent.java -------------------------------------------------------------------------------- /src/main/resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/resources/LICENSE -------------------------------------------------------------------------------- /src/main/resources/advanced.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/resources/advanced.yml -------------------------------------------------------------------------------- /src/main/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/resources/config.yml -------------------------------------------------------------------------------- /src/main/resources/lang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/resources/lang.yml -------------------------------------------------------------------------------- /src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZot1K/PhysicsToGo/HEAD/src/main/resources/plugin.yml --------------------------------------------------------------------------------