Skip to content

Commit

Permalink
fix(tsl): EXECUTE not executing as the streamer
Browse files Browse the repository at this point in the history
  • Loading branch information
iGoodie committed Jun 19, 2020
1 parent 065b06e commit 4ef0792
Showing 1 changed file with 15 additions and 0 deletions.
Expand Up @@ -319,6 +319,21 @@ public void setCommandStat(CommandResultStats.Type type, int amount) {
public MinecraftServer getServer() {
return sourceCommandSender.getServer();
}

@Override
public boolean equals(Object obj) {
return sourceCommandSender.equals(obj);
}

@Override
public int hashCode() {
return sourceCommandSender.hashCode();
}

@Override
public String toString() {
return sourceCommandSender.toString();
}
};
}

Expand Down

0 comments on commit 4ef0792

Please sign in to comment.