diff --git a/lib/bukkit-1.0.0-R1-SNAPSHOT.jar b/lib/bukkit-1.0.1-R1.jar similarity index 84% rename from lib/bukkit-1.0.0-R1-SNAPSHOT.jar rename to lib/bukkit-1.0.1-R1.jar index 60939e16..283d2224 100644 Binary files a/lib/bukkit-1.0.0-R1-SNAPSHOT.jar and b/lib/bukkit-1.0.1-R1.jar differ diff --git a/src/com/massivecraft/factions/integration/SpoutMainListener.java b/src/com/massivecraft/factions/integration/SpoutMainListener.java index ac4d6c57..70f34864 100644 --- a/src/com/massivecraft/factions/integration/SpoutMainListener.java +++ b/src/com/massivecraft/factions/integration/SpoutMainListener.java @@ -83,6 +83,7 @@ public class SpoutMainListener extends SpoutListener else { label = new GenericLabel(); + label.setWidth(1).setHeight(1); // prevent Spout's questionable new "no default size" warning label.setScale(Conf.spoutTerritoryDisplaySize); /* // this should work once the Spout team fix it to account for text scaling; we can then get rid of alignLabel method added below switch (Conf.spoutTerritoryDisplayPosition) { @@ -116,6 +117,7 @@ public class SpoutMainListener extends SpoutListener else { label = new NoticeLabel(Conf.spoutTerritoryNoticeLeaveAfterSeconds); + label.setWidth(1).setHeight(1); // prevent Spout's questionable new "no default size" warning label.setScale(Conf.spoutTerritoryNoticeSize); label.setY(Conf.spoutTerritoryNoticeTop); sPlayer.getMainScreen().attachWidget(P.p, label);