From 2ead578666fcaf589260d1c4912f1257263762fe Mon Sep 17 00:00:00 2001 From: RoboMWM Date: Wed, 19 Sep 2018 21:05:42 -0700 Subject: [PATCH] Make the version explicitely a string. Not sure if CB or yaml is at fault here [20:58:37] RoboMWM: hmmm it's a bit annoying how CB cuts off the trailing 0 in my versions [20:58:49] RoboMWM: e.g. 16.10 displays as 16.1 [20:59:02] +Choco: That seems... stupid? lol [20:59:12] RoboMWM: very [20:59:27] RoboMWM: plugin.yml inside jar reveals it to be correct [20:59:43] RoboMWM: and afaik this is supposed to be a string so idk why it's doing that [21:00:49] RoboMWM: apparently wrapping it with single quotes does the job [21:01:33] +Choco: Maybe it assumes it's a double then converts it to a String [21:02:04] RoboMWM: I guess >_> since I stuck a test.16.10 without quotes and it's all there [21:02:09] RoboMWM: thank you yaml [21:02:22] +Choco: What if you were to do 1.1.10? [21:02:30] +Choco: Because that's not a valid number, maybe it would assume String [21:02:33] RoboMWM: the second dot probably makes it a string [21:02:51] RoboMWM: maybe I should do 16.1O [21:02:57] +Choco: lol that's cheating --- src/main/resources/plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index dab131d..d907c96 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -3,7 +3,7 @@ main: me.ryanhamshire.GriefPrevention.GriefPrevention softdepend: [Vault, Multiverse-Core, My Worlds, MystCraft, Transporter, TheUnderground, WorldGuard, WorldEdit, RoyalCommands, MultiWorld, Denizen, Hyperconomy] dev-url: http://dev.bukkit.org/server-mods/grief-prevention loadbefore: [TheUnderground] -version: ${project.version} +version: '${project.version}' api-version: 1.13 commands: abandonclaim: