mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-11 11:40:29 +00:00
Fixed potential crash
This commit is contained in:
parent
941f536f5c
commit
969fd5e9bf
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ public class LivingWatcher extends FlagWatcher {
|
|||
}
|
||||
|
||||
public LivingWatcher clone() {
|
||||
LivingWatcher clone = this.clone();
|
||||
LivingWatcher clone = (LivingWatcher) super.clone();
|
||||
clone.potionEffects = (HashSet<MobEffect>) potionEffects.clone();
|
||||
return clone;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue