Step 1 in many removing the universe system. Untested and lacking auto convert features.

This commit is contained in:
Olof Larsson
2014-09-17 13:17:33 +02:00
parent c0b7b783b2
commit 529ae45ede
99 changed files with 1789 additions and 2662 deletions

View File

@ -17,9 +17,6 @@ public class EventFactionsCreate extends EventFactionsAbstractSender
// FIELDS
// -------------------------------------------- //
private final String universe;
public final String getUniverse() { return this.universe; }
private final String factionId;
public final String getFactionId() { return this.factionId; }
@ -30,10 +27,9 @@ public class EventFactionsCreate extends EventFactionsAbstractSender
// CONSTRUCT
// -------------------------------------------- //
public EventFactionsCreate(CommandSender sender, String universe, String factionId, String factionName)
public EventFactionsCreate(CommandSender sender, String factionId, String factionName)
{
super(sender);
this.universe = universe;
this.factionId = factionId;
this.factionName = factionName;
}