fix: dedup isCollidingWith

This commit is contained in:
cha0s 2019-04-30 18:23:00 -05:00
parent d77eff36e3
commit 50f1606a2b

View File

@ -39,8 +39,8 @@ export class Damaging extends Trait {
tick(elapsed) {
if (AVOCADO_SERVER) {
const isCollidingWith = this.entity.isCollidingWith;
for (let i = 0; i < isCollidingWith.length; ++i) {
const entity = isCollidingWith[i];
for (const uuid in isCollidingWith) {
const entity = isCollidingWith[uuid];
if (entity.is('vulnerable') && !entity.isInvulnerable) {
entity.takeDamageFrom(this.entity);
}