Compare commits

..

No commits in common. "master" and "v2.2" have entirely different histories.
master ... v2.2

4 changed files with 5 additions and 7 deletions

View File

@ -18,7 +18,9 @@
## 说明
本插件大约相当于 [ImageFrame](https://github.com/LOOHP/ImageFrame)的简版以及 [ImageMaps](https://github.com/SydMontague/ImageMaps) 的高版本重制版。前者功能丰富不过可能由于项目体量较大对于新版本的兼容较慢后者在1.18 开始就停止了更新,且不支持 Folia 核心。
本插件大约相当于 [ImageFrame](https://github.com/LOOHP/ImageFrame)
的简版以及 [ImageMaps](https://github.com/SydMontague/ImageMaps) 的高版本重制版。前者功能丰富,不过可能由于项目体量较大,对于新版本的兼容较慢,后者在
1.18 开始就停止了更新,切不支持 Folia 核心。
## 功能介绍

View File

@ -6,7 +6,7 @@
<groupId>cn.lunadeer</groupId>
<artifactId>ColorfulMap</artifactId>
<version>2.5</version>
<version>2.2</version>
<packaging>jar</packaging>
<name>ColorfulMap</name>

View File

@ -14,8 +14,8 @@ public final class ColorfulMap extends JavaPlugin {
public void onEnable() {
// Plugin startup logic
instance = this;
new XLogger(this);
config = new Configuration(this);
new XLogger(this);
XLogger.setDebug(config.isDebug());
new Notification(this);
new Scheduler(this);

View File

@ -31,10 +31,6 @@ public class Multi {
}
URL _url = new URL(url);
BufferedImage raw_image = ImageIO.read(_url);
if (raw_image == null) {
Notification.error(player, "无法读取有效图片,请检查图片地址是否正确或者更换图床");
return null;
}
BufferedImage resized_image;
if (scale != 1.0) {
resized_image = ImageTool.resize(raw_image, scale);