Skip to content

Commit

Permalink
spin finalisation
Browse files Browse the repository at this point in the history
- Update documentation
- Bump version to 1.2.0
  • Loading branch information
fill1890 committed Jun 19, 2022
1 parent beee8d0 commit 26fe7a6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -15,12 +15,12 @@ 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

Permissions to pose are granted to all players by default.

### `fabsit.commands` node

`sit, lay:` specific permission to use `/sit` or `/lay`
`sit, lay, spin:` specific permission to use appropriate poses
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* The PoseManagerEntity provides an interface to a variety of posing actions, currently:
* <pre>entity.Pose.SITTING</pre>
* <pre>entity.Pose.LAYING</pre>
* <pre>entity.Pose.SPINNING</pre>
* <br>
* The manager spawns in invisible armour stand for the player to ride to sit
* <br>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 26fe7a6

Please sign in to comment.