fix(web): locations recommend Ansehen, not the abolished Stufe

Two location panels still labelled their recommended range "Empfohlene
Stufe". The player no longer has a Stufe -- this slice replaced the
1-7 level scale with Ansehen 1-15, so the UI was recommending a scale
the character cannot be measured on.

Source slice doc section 3 defines this concept as Recommended Renown
per region (Aschenfelder 1-5). The seeded values already sit inside
that range (south-gate 1-1, burned-road 1-2), so only the label was
wrong -- no data change needed.

The min_recommended_level / max_recommended_level column and property
names are left as-is: internal naming, no user-visible effect, and
renaming them would reach across the API, the entity, the DTO and the
seed for no behavioural gain.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
Bastian Wagner
2026-08-21 18:15:42 +02:00
parent b350c3f9b1
commit 18f4be586b
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@
<dd>{{ locationTypeLabel }}</dd> <dd>{{ locationTypeLabel }}</dd>
</div> </div>
<div> <div>
<dt>Empfohlene Stufe</dt> <dt>Empfohlenes Ansehen</dt>
<dd class="location-sidebar__recommendation">{{ location.recommendationLabel }}</dd> <dd class="location-sidebar__recommendation">{{ location.recommendationLabel }}</dd>
</div> </div>
<div> <div>

View File

@@ -17,7 +17,7 @@
<dl class="context-panel__facts"> <dl class="context-panel__facts">
<div> <div>
<dt>Empfohlene Stufe</dt> <dt>Empfohlenes Ansehen</dt>
<dd>{{ location.minRecommendedLevel }}{{ location.maxRecommendedLevel }}</dd> <dd>{{ location.minRecommendedLevel }}{{ location.maxRecommendedLevel }}</dd>
</div> </div>
<div> <div>