Update wall colission error string to it's new location (it's a foundry native string that was moved to a new key)

This commit is contained in:
Manuel Vögele
2024-03-06 22:30:28 +01:00
parent f1fcc52867
commit f12dbf0e61
+1 -1
View File
@@ -35,7 +35,7 @@ export async function moveEntities(draggedEntity, selectedEntities) {
); );
}); });
if (hasCollision) { if (hasCollision) {
ui.notifications.error(game.i18n.localize("ERROR.TokenCollide")); ui.notifications.error(game.i18n.localize("RULER.MovementCollision"));
this._endMeasurement(); this._endMeasurement();
return true; return true;
} }