Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gabsoftware committed Sep 9, 2019
1 parent 5610a66 commit 61e02cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/org/dynmap/mobs/DynmapMobsPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ else if(mobs[i].mobid.equals("cat")) { /* Check for tamed cat */
}
}
}
else if(mobs[i].mobid.equals("horse")) { /* Check for tamed cat */
else if(mobs[i].mobid.equals("horse")) { /* Check for tamed horse */
Horse horse = (Horse)le;
if(horse.isTamed()) {
i = findNext(i, "horse");
Expand All @@ -367,7 +367,7 @@ else if(mobs[i].mobid.equals("horse")) { /* Check for tamed cat */
}
}
}
else if(mobs[i].mobid.equals("traderllama")) { /* Check for tamed cat */
else if(mobs[i].mobid.equals("traderllama")) { /* Check for tamed traderllama */
TraderLlama traderllama = (TraderLlama)le;
if(traderllama.isTamed()) {
i = findNext(i, "traderllama");
Expand All @@ -377,7 +377,7 @@ else if(mobs[i].mobid.equals("traderllama")) { /* Check for tamed cat */
}
}
}
else if(mobs[i].mobid.equals("llama")) { /* Check for tamed cat */
else if(mobs[i].mobid.equals("llama")) { /* Check for tamed llama */
Llama llama = (Llama)le;
if(llama.isTamed()) {
i = findNext(i, "llama");
Expand All @@ -387,7 +387,7 @@ else if(mobs[i].mobid.equals("llama")) { /* Check for tamed cat */
}
}
}
else if(mobs[i].mobid.equals("parrot")) { /* Check for tamed cat */
else if(mobs[i].mobid.equals("parrot")) { /* Check for tamed parrot */
Parrot parrot = (Parrot)le;
if(parrot.isTamed()) {
i = findNext(i, "parrot");
Expand Down

0 comments on commit 61e02cc

Please # to comment.