mirror of
https://github.com/Oth3r/Sit.git
synced 2025-09-19 16:03:22 +02:00
Compare commits
9 commits
22e366bd86
...
def20a38ff
Author | SHA1 | Date | |
---|---|---|---|
![]() |
def20a38ff |
||
![]() |
9f79a99044 |
||
![]() |
ce9a88d56d |
||
![]() |
89536e3070 |
||
![]() |
1bb8409931 |
||
![]() |
e43273b172 |
||
![]() |
c7875aa9ea |
||
![]() |
65f0a77cfc |
||
![]() |
b8b726563e |
5 changed files with 30 additions and 19 deletions
30
README.md
30
README.md
|
@ -1,9 +1,10 @@
|
|||
<img src="https://github.com/Oth3r/oth3r.github.io/blob/main/mod_data/Sit!/media/banner.png?raw=true" width="50%" style="margin-bottom: 10px; max-width:400px;">
|
||||

|
||||
|
||||
[](https://github.com/Oth3r/Sit/releases) [](https://crowdin.com/project/oth3r-sit) [](https://www.oth3r.one/discord)
|
||||
|
||||
[](https://modrinth.com/mod/sit!) [](https://www.curseforge.com/minecraft/mc-mods/Sit1)
|
||||
[](https://github.com/Oth3r/Sit/issues)
|
||||
[](https://crowdin.com/project/oth3r-sit)
|
||||
[](https://www.oth3r.one/discord)
|
||||
|
||||
[](https://modrinth.com/plugin/otterlib)
|
||||
|
||||
### **Sit!** is a vanilla+ mod that adds sitting in minecraft.
|
||||
* Sit on **stairs**, **slabs**, **carpets** by default, and sit on everything else by tweaking the config!
|
||||
|
@ -41,28 +42,29 @@ Don't want to accidentally sit down? Set custom restrictions for each hand in th
|
|||
\
|
||||
Use **player unique** hand restrictions when connecting to a `Sit!` server on a `Sit!` Client!
|
||||
|
||||
<img src="https://github.com/Oth3r/oth3r.github.io/blob/main/mod_data/Sit!/media/desc/hand_restrictions.gif?raw=true" width="100%" style="margin-bottom: 10px;max-width:600px;"
|
||||
alt="per player hand restriction showcase">
|
||||

|
||||
|
||||
### 🟩 Custom Blocks
|
||||
Want to sit on _**EVERY**_ block? With the config you can add more sitting options!
|
||||
\
|
||||
With the new config system, block tags and custom blockstates can be used to mass select blocks at ease.
|
||||
|
||||
<img src="https://github.com/Oth3r/oth3r.github.io/blob/main/mod_data/Sit!/media/desc/custom_blocks.gif?raw=true" width="100%" style="margin-bottom: 10px; max-width:600px;"
|
||||
alt="players sitting on a vast range of blocks">
|
||||

|
||||
|
||||
### ⌨️ Keybinds
|
||||
Don't want to sit with the **just** the hand? Use a keybind or type a command to sit instead!
|
||||
Don't want to sit with **just** the hand? Use a keybind or type a command to sit instead!
|
||||
|
||||
<img src="https://github.com/Oth3r/oth3r.github.io/blob/main/mod_data/Sit!/media/desc/keybinds.gif?raw=true" width="100%" style="margin-bottom: 10px; max-width:600px;"
|
||||
alt="setting keybinds for the sit mod, and sitting by using them">
|
||||

|
||||
|
||||
### 📃 Customizable Config
|
||||
Don't like the default settings? Go wild in the config for yourself or your players!
|
||||
<img src="https://github.com/Oth3r/oth3r.github.io/blob/main/mod_data/Sit!/media/desc/config.gif?raw=true" width="100%" style="margin-bottom: 10px; max-width:600px;"
|
||||
alt="the Sit! config wiki page">
|
||||
|
||||
## Future Goals
|
||||

|
||||
|
||||
## 🎯 Future Goals
|
||||
* NeoForge Port
|
||||
* Full config via [OtterLib](https://modrinth.com/mod/otterlib)
|
||||
|
||||
## 🔗 Where to download
|
||||
[](https://modrinth.com/mod/sit!)
|
||||
[](https://www.curseforge.com/minecraft/mc-mods/Sit1)
|
|
@ -1,5 +1,5 @@
|
|||
plugins {
|
||||
id 'fabric-loom' version "1.10-SNAPSHOT"
|
||||
id 'fabric-loom' version "1.11-SNAPSHOT"
|
||||
id 'maven-publish'
|
||||
id "me.modmuss50.mod-publish-plugin" version "0.8.4"
|
||||
id 'co.uzzu.dotenv.gradle' version '4.0.0'
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
# v1.2.4.7
|
||||
* fixed legacy file updater causing a stack overflow crash
|
||||
|
||||
# v1.2.4.6
|
||||
* fixed max otterlib version (1.21.8)
|
||||
|
||||
# v1.2.4.5
|
||||
* bumped OtterLib version to `0.2.1.0`
|
||||
* fixed default languages files not being able to be loaded
|
||||
|
|
|
@ -13,7 +13,7 @@ yarn_mappings=1.21.4+build.8
|
|||
loader_version=0.16.14
|
||||
|
||||
# Mod Properties
|
||||
mod_version=1.2.4.5+1.21.4
|
||||
mod_version=1.2.4.7+1.21.4
|
||||
maven_group=one.oth3r
|
||||
file_name=sit!
|
||||
|
||||
|
|
|
@ -345,6 +345,11 @@ public class ServerConfig implements CustomFile<ServerConfig> {
|
|||
} catch (Exception e) {
|
||||
Data.LOGGER.error("Failed to delete the old Sit! config.");
|
||||
}
|
||||
|
||||
// save the updated configs
|
||||
FileData.saveFiles();
|
||||
|
||||
// continue loading as normal...
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -494,8 +499,6 @@ public class ServerConfig implements CustomFile<ServerConfig> {
|
|||
|
||||
FileData.setServerConfig(serverConfig);
|
||||
FileData.setSittingConfig(sittingConfig);
|
||||
serverConfig.save();
|
||||
sittingConfig.save();
|
||||
} catch (Exception e) {
|
||||
Data.LOGGER.error("Error loading legacy config: %s", e.getMessage());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue