Skip to content

Commit

Permalink
v2.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
caoli5288 committed Nov 5, 2021
1 parent f9c5f3b commit 5a0405d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 21 deletions.
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

PlayerSQL
=========
允许你通过这个插件在不同的Minecraft服务器之间同步玩家数据。包括:
允许你通过这个插件在不同的Minecraft服务器之间同步玩家数据。[投食链接](https://www.paypal.me/2732000916/5)

- 物品栏
- 装备栏
- 经验值
Expand All @@ -21,12 +22,6 @@ PlayerSQL
- 玩家退出事件
- 玩家各种事件

请允许我懒得都列出来。

指令
---
- /psql send <player_name> <server_name>

数据管理器
--------
服务端从1.8开始不允许异步操作玩家对象(简直是退步),因此所有有关玩家数据的读和写都必须在主线程完成。
Expand All @@ -43,7 +38,3 @@ PlayerSQL
路径图
----
![](image/mindmap.png)

增强模式
------
将插件同时安装至bungeecord以启用增强模式,可提高跨服速度以及稳定性。[投食链接](https://www.paypal.me/2732000916/5)
2 changes: 1 addition & 1 deletion internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>playersql-parent</artifactId>
<groupId>com.mengcraft</groupId>
<version>2.12.2</version>
<version>2.12.3</version>
</parent>

<artifactId>playersql-internal</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion playersql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>playersql-parent</artifactId>
<groupId>com.mengcraft</groupId>
<version>2.12.2</version>
<version>2.12.3</version>
</parent>

<artifactId>playersql</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public void onEnable() {
getServer().getMessenger().registerOutgoingPluginChannel(this, PlayerSqlProtocol.NAMESPACE);
getServer().getMessenger().registerIncomingPluginChannel(this, PlayerSqlProtocol.NAMESPACE, executor);

getCommand("playersql").setExecutor(new Commands());
// getCommand("playersql").setExecutor(new Commands());

getServer().getConsoleSender().sendMessage(ChatColor.GREEN + "PlayerSQL enabled! Donate me plz. https://www.paypal.me/2732000916/5");
}
Expand Down
3 changes: 0 additions & 3 deletions playersql/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,5 @@ version: ${project.version}
website: http://www.spigotmc.org/resources/playersql.552/
author: [email protected]
depend: [SimpleORM, ProtocolLib]
commands:
playersql:
permission: playersql.admin
libraries:
- org.lz4:lz4-java:1.8.0
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.mengcraft</groupId>
<artifactId>playersql-parent</artifactId>
<version>2.12.2</version>
<version>2.12.3</version>

<packaging>pom</packaging>

Expand Down
2 changes: 1 addition & 1 deletion v1_12/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>playersql-parent</artifactId>
<groupId>com.mengcraft</groupId>
<version>2.12.2</version>
<version>2.12.3</version>
</parent>

<artifactId>playersql-v1_12</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion v1_13_2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>playersql-parent</artifactId>
<groupId>com.mengcraft</groupId>
<version>2.12.2</version>
<version>2.12.3</version>
</parent>

<artifactId>playersql-v1_13_2</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion v1_8_3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>playersql-parent</artifactId>
<groupId>com.mengcraft</groupId>
<version>2.12.2</version>
<version>2.12.3</version>
</parent>

<artifactId>playersql-v1_8_3</artifactId>
Expand Down

0 comments on commit 5a0405d

Please sign in to comment.