v2.3.0: fixed incorrect emitter use in gnoll guards & geomancer
This commit is contained in:
+3
-1
@@ -108,6 +108,7 @@ public class GnollGeomancerSprite extends MobSprite {
|
|||||||
super.die();
|
super.die();
|
||||||
if (earthArmor != null){
|
if (earthArmor != null){
|
||||||
earthArmor.on = false;
|
earthArmor.on = false;
|
||||||
|
earthArmor = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -115,7 +116,8 @@ public class GnollGeomancerSprite extends MobSprite {
|
|||||||
public void kill() {
|
public void kill() {
|
||||||
super.kill();
|
super.kill();
|
||||||
if (earthArmor != null){
|
if (earthArmor != null){
|
||||||
earthArmor.killAndErase();
|
earthArmor.on = false;
|
||||||
|
earthArmor = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+3
-1
@@ -96,6 +96,7 @@ public class GnollGuardSprite extends MobSprite {
|
|||||||
super.die();
|
super.die();
|
||||||
if (earthArmor != null){
|
if (earthArmor != null){
|
||||||
earthArmor.on = false;
|
earthArmor.on = false;
|
||||||
|
earthArmor = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -103,7 +104,8 @@ public class GnollGuardSprite extends MobSprite {
|
|||||||
public void kill() {
|
public void kill() {
|
||||||
super.kill();
|
super.kill();
|
||||||
if (earthArmor != null){
|
if (earthArmor != null){
|
||||||
earthArmor.killAndErase();
|
earthArmor.on = false;
|
||||||
|
earthArmor = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user