Skip to content

Commit e2c4423

Browse files
committed
Remove '$' character from goto quest string text
1 parent cbc1ae0 commit e2c4423

File tree

1 file changed

+2
-2
lines changed
  • Assets/Scripts/Game/NarrativeGenerator/Quests/ProfileQuests/Creativity

1 file changed

+2
-2
lines changed

Assets/Scripts/Game/NarrativeGenerator/Quests/ProfileQuests/Creativity/GotoQuestSo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ public override void RemoveElementWithId<T>(T questElement, int questId)
7474
public override void CreateQuestString()
7575
{
7676
if (GameManager.GameManagerSingleton.Instance.IsInPortuguese)
77-
QuestText = $"$Vá para a sala marcada no mapa! <goto={SelectedRoomCoordinates.X},{SelectedRoomCoordinates.Y}>";
77+
QuestText = $"Vá para a sala marcada no mapa! <goto={SelectedRoomCoordinates.X},{SelectedRoomCoordinates.Y}>";
7878
else
79-
QuestText = $"$Go to the room highlighted in the map! <goto={SelectedRoomCoordinates.X},{SelectedRoomCoordinates.Y}>";
79+
QuestText = $"Go to the room highlighted in the map! <goto={SelectedRoomCoordinates.X},{SelectedRoomCoordinates.Y}>";
8080
}
8181

8282
public void SelectRoomCoordinates(List<DungeonRoomData> partsList)

0 commit comments

Comments
 (0)