Skip to content

Commit

Permalink
ScriptEntityPlus v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yuttyann committed Dec 1, 2021
1 parent 1b6ca52 commit 09dad4f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ScriptEntityPlus [Java8 MC1.9-1.17.1]
ScriptEntityPlus [Java8 MC1.9-1.18]
==========
概要
--------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.yuttyann</groupId>
<artifactId>ScriptEntityPlus</artifactId>
<version>1.1.9</version>
<version>1.2.0</version>

<name>ScriptEntityPlus</name>
<url>https://github.com/yuttyann/ScriptEntityPlus</url>
Expand Down Expand Up @@ -50,13 +50,13 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.17-R0.1-SNAPSHOT</version>
<version>1.18-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.yuttyann</groupId>
<artifactId>ScriptBlockPlus</artifactId>
<version>2.1.8</version>
<version>v2.2.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

public class ScriptEntity extends JavaPlugin {

public static final String SBP_VERSION = "2.1.8";
public static final String SBP_VERSION = "2.2.0";

@Override
public void onEnable() {
Expand All @@ -56,7 +56,7 @@ public void onEnable() {
SEFiles.reload();

// キャッシュの生成
CacheJson.register(EntityScriptJson.class);
CacheJson.register(EntityScriptJson.class, EntityScriptJson::new);
CacheJson.loading(EntityScriptJson.class);

// リスナーの登録
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@JsonTag(path = "json/entityscript")
public class EntityScriptJson extends SingleJson<EntityScript> {

private EntityScriptJson(@NotNull String name) {
public EntityScriptJson(@NotNull String name) {
super(name);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package com.github.yuttyann.scriptentityplus.listener;

import com.github.yuttyann.scriptblockplus.enums.server.ClassType;
import com.github.yuttyann.scriptblockplus.enums.server.reflect.ClassType;
import com.github.yuttyann.scriptentityplus.json.EntityScript;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
Expand Down

0 comments on commit 09dad4f

Please sign in to comment.