From 26fe7a6452b37c47304e948ebd2eaebaf0973131 Mon Sep 17 00:00:00 2001 From: fill1890 Date: Sun, 19 Jun 2022 20:57:10 +1000 Subject: [PATCH] spin finalisation - Update documentation - Bump version to 1.2.0 --- README.md | 6 +++--- gradle.properties | 2 +- .../java/net/fill1890/fabsit/entity/PoseManagerEntity.java | 1 + src/main/resources/fabric.mod.json | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fc12994..4b236ef 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Ever wanted to use `/sit` on a fabric server? This mod is for you! It's even a server-only mod - no client-side installation necessary. -The mod currently implements `/sit` and `/lay` to allow players to sit or lie down. +The mod currently implements `/sit`, `/lay` and `/spin`. The mod eventually aims to provide near-feature parity to the [GSit](https://www.spigotmc.org/resources/gsit-modern-sit-seat-and-chair-lay-and-crawl-plugin-1-13-x-1-19-x.62325/) mod for Spigot however implementation is ongoing. Exact behaviour matching is not guaranteed. @@ -15,7 +15,7 @@ Requires the Fabric API Simply add the jar file to your server mods directory, or client for single player worlds. -Players can then use `/sit` to sit down or `/lay` to lie down. +Players can then use `/sit` to sit, `/lay` to lie down or `/spin` to start spinning. ## Permissions @@ -23,4 +23,4 @@ Permissions to pose are granted to all players by default. ### `fabsit.commands` node -`sit, lay:` specific permission to use `/sit` or `/lay` \ No newline at end of file +`sit, lay, spin:` specific permission to use appropriate poses \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index ea9ae7d..fbe12b3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G loader_version=0.14.7 # Mod Properties - mod_version = 1.1.1+1.19 + mod_version = 1.2.0+1.19 maven_group = net.fill1890 archives_base_name = fabsit diff --git a/src/main/java/net/fill1890/fabsit/entity/PoseManagerEntity.java b/src/main/java/net/fill1890/fabsit/entity/PoseManagerEntity.java index 63ab70f..f1c00dc 100644 --- a/src/main/java/net/fill1890/fabsit/entity/PoseManagerEntity.java +++ b/src/main/java/net/fill1890/fabsit/entity/PoseManagerEntity.java @@ -20,6 +20,7 @@ * The PoseManagerEntity provides an interface to a variety of posing actions, currently: *
entity.Pose.SITTING
*
entity.Pose.LAYING
+ *
entity.Pose.SPINNING
*
* The manager spawns in invisible armour stand for the player to ride to sit *
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 2e0e2a9..208e99a 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,7 +1,7 @@ { "schemaVersion": 1, "id": "fabsit", - "version": "1.1.1+1.19", + "version": "1.2.0+1.19", "name": "FabSit", "description": "Sit in Fabric",