From cb769265f00151266e0fd6fb6667fa298040b70f Mon Sep 17 00:00:00 2001 From: bspkrs Date: Wed, 16 Jan 2013 23:49:09 -0500 Subject: [PATCH] Fix logical error in comment text --- fml/common/cpw/mods/fml/common/ModContainer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fml/common/cpw/mods/fml/common/ModContainer.java b/fml/common/cpw/mods/fml/common/ModContainer.java index 26b418170..21c60942f 100644 --- a/fml/common/cpw/mods/fml/common/ModContainer.java +++ b/fml/common/cpw/mods/fml/common/ModContainer.java @@ -81,13 +81,13 @@ public interface ModContainer /** * A list of modids that should be loaded prior to this one. The special - * value * indicates to load before any other mod. + * value * indicates to load after any other mod. */ List getDependencies(); /** * A list of modids that should be loaded after this one. The - * special value * indicates to load after any + * special value * indicates to load before any * other mod. */ List getDependants();