Skip to content

Commit

Permalink
Fix crap
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberpwnn committed Nov 26, 2016
1 parent 133db9d commit ccbffb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.cyberpwn</groupId>
<artifactId>icing</artifactId>
<version>1.4</version>
<version>1.5</version>
<name>Icing</name>
<description>Icing under the cake</description>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void onTick()
continue;
}

if(isEnabled(i) && isUnlocked(i) && i.isSneaking())
if(isEnabled(i) && isUnlocked(i) && i.isSneaking() && !i.isDead())
{
double range = getRange((int) getLevel(i));
Area a = new Area(i.getLocation(), range);
Expand Down

0 comments on commit ccbffb9

Please sign in to comment.