diff --git a/src/com/massivecraft/mcore/Couple.java b/src/com/massivecraft/mcore/Couple.java
index 99daefbc..a068c686 100644
--- a/src/com/massivecraft/mcore/Couple.java
+++ b/src/com/massivecraft/mcore/Couple.java
@@ -32,10 +32,15 @@ public class Couple implements Entry, Cloneable, Serializable
public Couple withSecond(B second) { return valueOf(first, second); }
// -------------------------------------------- //
- // PRIVATE CONSTRUCTOR
+ // CONSTRUCT
// -------------------------------------------- //
- private Couple(A first, B second)
+ public Couple()
+ {
+ this(null, null);
+ }
+
+ public Couple(A first, B second)
{
this.first = first;
this.second = second;