another fix blah.

This commit is contained in:
hondacrx
2021-03-30 13:38:49 -04:00
parent 4d02ef5440
commit e8c1c821ca
+3 -1
View File
@@ -1378,9 +1378,11 @@ namespace Game.Entities
continue; continue;
} }
StoredAuraTeleportLocation storedLocation = m_storedAuraTeleportLocations[spellId]; StoredAuraTeleportLocation storedLocation = new();
storedLocation.Loc = location; storedLocation.Loc = location;
storedLocation.CurrentState = StoredAuraTeleportLocation.State.Unchanged; storedLocation.CurrentState = StoredAuraTeleportLocation.State.Unchanged;
m_storedAuraTeleportLocations[spellId] = storedLocation;
} }
while (result.NextRow()); while (result.NextRow());
} }