Skip to content

Commit

Permalink
null
Browse files Browse the repository at this point in the history
  • Loading branch information
nullaqua committed Feb 26, 2022
1 parent d6fa185 commit 4a4852e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.lanzhi</groupId>
<artifactId>BluestarGame</artifactId>
<version>2.0.6</version>
<version>2.0.8</version>
<packaging>jar</packaging>

<name>BluestarGame</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/lanzhi/bluestargame/Type/muted.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public Map<String,Object> serialize()

public boolean get(String name)
{
return Boolean.parseBoolean(map.get(name).toString());
return Boolean.parseBoolean(map.get(name)+"");
}
public Map getall()
{
Expand Down

0 comments on commit 4a4852e

Please sign in to comment.