Skip to content

Commit af29177

Browse files
Merge pull request #1086 from eccentricdevotion/copper_golem
- copper golems and games - changes to desktop theme artron costs - bug fixes
2 parents 9a2e689 + 02d66c6 commit af29177

File tree

173 files changed

+5874
-1126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+5874
-1126
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
branches: [ "master" ]
1010

1111
env:
12-
VERSION: '6.3.10'
12+
VERSION: '6.3.11'
1313
RELEASE_TAG: '1.21.11'
1414

1515
jobs:

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# TARDIS
22

33
TARDIS is a PaperMC plugin that allows you to create a TARDIS that lets you time travel (teleport) to random
4-
locations. It adds a Whovian twist to the typical /sethome and /home commands.
4+
locations. It adds a Whovian twist to the typical `/sethome` and `/home` commands.
55

66
**As a player, you can:**
77

@@ -33,6 +33,8 @@ GitHub continuously integrated builds (updated when changes are pushed to this r
3333
![Spigot downloads](https://img.shields.io/spiget/downloads/45729?label=Spigot%20downloads&style=for-the-badge)
3434
![bStats Servers](https://img.shields.io/bstats/servers/11698?style=for-the-badge)
3535

36+
![1.21.11 downloads](https://img.shields.io/github/downloads/eccentricdevotion/TARDIS/1.21.11/total?style=for-the-badge)
37+
![1.21.10 downloads](https://img.shields.io/github/downloads/eccentricdevotion/TARDIS/1.21.10/total?style=for-the-badge)
3638
![1.21.8 downloads](https://img.shields.io/github/downloads/eccentricdevotion/TARDIS/1.21.8/total?style=for-the-badge)
3739
![1.21.5 downloads](https://img.shields.io/github/downloads/eccentricdevotion/TARDIS/1.21.5/total?style=for-the-badge)
3840
![1.21.4 downloads](https://img.shields.io/github/downloads/eccentricdevotion/TARDIS/1.21.4/total?style=for-the-badge)

build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212

1313
group = "me.eccentric_nz"
1414
val buildNumber = "-b${System.getenv("BUILD_NUMBER") ?: (System.getenv("SHORT_SHA") ?: ".local")}"
15-
version = "6.3.10${buildNumber}"
15+
version = "6.3.11${buildNumber}"
1616

1717
repositories {
1818
mavenCentral()
@@ -88,10 +88,10 @@ repositories {
8888

8989
dependencies {
9090
paperweight.paperDevBundle("1.21.11-R0.1-SNAPSHOT")
91-
compileOnly("com.sk89q.worldedit:worldedit-core:7.4.0-SNAPSHOT") {
91+
compileOnly("com.sk89q.worldedit:worldedit-core:8.0.0-SNAPSHOT") {
9292
isTransitive = false
9393
}
94-
compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.4.0-SNAPSHOT") {
94+
compileOnly("com.sk89q.worldedit:worldedit-bukkit:8.0.0-SNAPSHOT") {
9595
isTransitive = false
9696
}
9797
compileOnly("com.sk89q.worldguard:worldguard-core:7.1.0-SNAPSHOT") {
@@ -103,7 +103,7 @@ dependencies {
103103
compileOnly("net.citizensnpcs:citizensapi:2.0.41-SNAPSHOT") {
104104
isTransitive = false
105105
}
106-
compileOnly("com.palmergames.bukkit.towny:towny:0.102.0.3") {
106+
compileOnly("com.palmergames.bukkit.towny:towny:0.102.0.6") {
107107
isTransitive = false
108108
}
109109
compileOnly("org.mvplugins.multiverse.core:multiverse-core:5.5.0") {
@@ -122,7 +122,7 @@ dependencies {
122122
compileOnly("com.griefcraft:lwc:2.4.1") {
123123
isTransitive = false
124124
}
125-
compileOnly("com.github.retrooper:packetevents-api:2.11.1") {
125+
compileOnly("com.github.retrooper:packetevents-api:2.11.2") {
126126
isTransitive = false
127127
}
128128
compileOnly("me.libraryaddict.disguises:libsdisguises:11.0.14") {
@@ -143,8 +143,8 @@ dependencies {
143143
compileOnly("net.coreprotect:coreprotect:23.1") {
144144
isTransitive = false
145145
}
146-
compileOnly(files("libs/dynmap-api-3.7-beta-10.jar"))
147-
compileOnly(files("libs/DynmapCoreAPI-3.7-beta-10.jar"))
146+
compileOnly(files("libs/dynmap-api-3.8.jar"))
147+
compileOnly(files("libs/DynmapCoreAPI-3.8.jar"))
148148
compileOnly("de.bluecolored:bluemap-api:2.7.7")
149149
compileOnly("xyz.jpenilla:squaremap-api:1.3.12") {
150150
isTransitive = false

gradle/wrapper/gradle-wrapper.jar

718 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

100644100755
Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

100644100755
Lines changed: 93 additions & 94 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/java/me/eccentric_nz/TARDIS/ARS/TARDISARS.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ public enum TARDISARS implements ARS {
4343
EYE("SHROOMLIGHT", "Eye of Harmony", 1, RoomVariant.EYE.getKey()),
4444
FARM("DIRT", "Mob Farm", 1, RoomVariant.FARM.getKey()),
4545
GALLERY("CHISELED_QUARTZ_BLOCK", "Art Gallery", 1, RoomVariant.GALLERY.getKey()),
46+
GAMES("DARK_OAK_PLANKS", "Games Room", 1, RoomVariant.GAMES.getKey()),
4647
GARDEN("CHERRY_LEAVES", "Flower Garden", 1, RoomVariant.GARDEN.getKey()),
4748
GEODE("AMETHYST_BLOCK", "Geode", 1, RoomVariant.GEODE.getKey()),
49+
GOLEM("TUFF", "Copper Golem Charging Station", 1, RoomVariant.GOLEM.getKey()),
4850
GRAVITY("MOSSY_COBBLESTONE", "Gravity Well", 1, RoomVariant.GRAVITY.getKey()),
4951
GREENHOUSE("MELON", "Greenhouse", 1, RoomVariant.GREENHOUSE.getKey()),
5052
HAPPY("STRIPPED_OAK_LOG", "Happy Ghast Dock", 1, RoomVariant.HAPPY.getKey()),
@@ -81,6 +83,7 @@ public enum TARDISARS implements ARS {
8183
WOOD("OAK_PLANKS", "Wood Secondary Console", 1, RoomVariant.WOOD.getKey()),
8284
WORKSHOP("RED_NETHER_BRICKS", "Workshop", 1, RoomVariant.WORKSHOP.getKey()),
8385
ZERO("GRASS_BLOCK", "Zero Room", 0, null, false),
86+
ARCADE("STRUCTURE_BLOCK", "Arcade", 0, null, false),
8487
JETTISON("TNT", "Jettison", 0, RoomVariant.JETTISON.getKey(), false),
8588
SLOT("STONE", "Empty slot", 0, RoomVariant.SLOT.getKey(), false),
8689
CUSTOM("", "Custom room", 0, null, false),

0 commit comments

Comments
 (0)