Skip to content
This repository has been archived by the owner on Jul 27, 2019. It is now read-only.

Commit

Permalink
Add support for Faction 2.7.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnaude committed Dec 7, 2014
1 parent 74107f9 commit 9ee7249
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -130,7 +130,7 @@
<dependency>
<groupId>com.cnaude.factions</groupId>
<artifactId>Factions</artifactId>
<version>2.5.0</version>
<version>2.7.3</version>
</dependency>

<!-- OreBroadcast -->
Expand Down Expand Up @@ -158,7 +158,7 @@
<dependency>
<groupId>com.cnaude.mcore</groupId>
<artifactId>MassiveCore</artifactId>
<version>7.3.0</version>
<version>2.7.3</version>
</dependency>

<!-- FactionChat -->
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/cnaude/purpleirc/PurpleBot.java
Expand Up @@ -39,7 +39,7 @@
import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableSortedSet;
import com.massivecraft.factions.entity.Faction;
import com.massivecraft.factions.entity.UPlayer;
import com.massivecraft.factions.entity.MPlayer;
import com.nyancraft.reportrts.data.Ticket;
import com.titankingdoms.dev.titanchat.core.participant.Participant;
import java.io.File;
Expand Down Expand Up @@ -2691,7 +2691,7 @@ public void consoleMsgPlayer(String nick, String message) {
* @return
*/
protected String getFactionName(Player player) {
UPlayer uPlayer = UPlayer.get(player);
MPlayer uPlayer = MPlayer.get(player);
Faction faction = uPlayer.getFaction();
return faction.getName();
}
Expand Down

0 comments on commit 9ee7249

Please sign in to comment.