├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── main.go └── plot ├── command ├── auto.go ├── claim.go ├── clear.go ├── delete.go ├── list.go └── teleport.go ├── db.go ├── generator.go ├── player_handler.go ├── plot.go ├── pos.go ├── settings.go └── world_handler.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | players 3 | plots 4 | world 5 | resources 6 | config.toml 7 | main -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/main.go -------------------------------------------------------------------------------- /plot/command/auto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/command/auto.go -------------------------------------------------------------------------------- /plot/command/claim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/command/claim.go -------------------------------------------------------------------------------- /plot/command/clear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/command/clear.go -------------------------------------------------------------------------------- /plot/command/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/command/delete.go -------------------------------------------------------------------------------- /plot/command/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/command/list.go -------------------------------------------------------------------------------- /plot/command/teleport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/command/teleport.go -------------------------------------------------------------------------------- /plot/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/db.go -------------------------------------------------------------------------------- /plot/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/generator.go -------------------------------------------------------------------------------- /plot/player_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/player_handler.go -------------------------------------------------------------------------------- /plot/plot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/plot.go -------------------------------------------------------------------------------- /plot/pos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/pos.go -------------------------------------------------------------------------------- /plot/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/settings.go -------------------------------------------------------------------------------- /plot/world_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/df-mc/plots/HEAD/plot/world_handler.go --------------------------------------------------------------------------------