Skip to content

Commit

Permalink
Fix phrasing
Browse files Browse the repository at this point in the history
  • Loading branch information
MSWS committed Mar 3, 2024
1 parent 27c34ee commit 4e5a7bd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lang/Jailbreak.English/LastRequest/LastRequestMessages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,18 @@ public IView InformLastRequest(AbstractLastRequest lr)
return new SimpleView()
{
PREFIX,
lr.prisoner, "is", lr.type.ToFriendlyString(),
"against", lr.guard
lr.prisoner, "is preparing a", lr.type.ToFriendlyString(),
"Last Request against", lr.guard
};
}

public IView AnnounceLastRequest(AbstractLastRequest lr)
{
return new SimpleView()
{
lr.prisoner, "is", lr.type.ToFriendlyString(),
"against", lr.guard
PREFIX,
lr.prisoner, "is doing a", lr.type.ToFriendlyString(),
"Last Request against", lr.guard
};
}

Expand Down

0 comments on commit 4e5a7bd

Please sign in to comment.