Skip to content

Commit

Permalink
Re-Soften Citizens2 link
Browse files Browse the repository at this point in the history
Citizens shouldn't crash Denizen
  • Loading branch information
mcmonkey4eva committed Oct 28, 2014
1 parent bd97885 commit bb0376c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/net/aufdemrand/denizen/tags/TagManager.java
Expand Up @@ -6,6 +6,7 @@
import net.aufdemrand.denizen.scripts.ScriptEntry;
import net.aufdemrand.denizen.tags.core.*;
import net.aufdemrand.denizen.utilities.debugging.dB;
import net.aufdemrand.denizen.utilities.depends.Depends;
import net.minecraft.util.org.apache.commons.lang3.StringUtils;
import org.bukkit.Bukkit;
import org.bukkit.event.EventHandler;
Expand Down Expand Up @@ -51,7 +52,8 @@ public void registerCoreTags() {
new EntityTags(denizen);
new ListTags(denizen);
new LocationTags(denizen);
new NPCTags(denizen);
if (Depends.citizens != null)
new NPCTags(denizen);
new PlayerTags(denizen);
new QueueTags(denizen);
new ScriptTags(denizen);
Expand Down

0 comments on commit bb0376c

Please sign in to comment.