-
Notifications
You must be signed in to change notification settings - Fork 363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature: splits Client into Client.Core #2399
Conversation
@@ -801,7 +801,7 @@ public void DrawItemNames() | |||
var rarity = itemBase.Rarity; | |||
if (tileItems[index].Quantity > 1) | |||
{ | |||
name = Localization.Strings.General.MapItemStackable.ToString(name, Strings.FormatQuantityAbbreviated(quantity)); | |||
name = Intersect.Client.Localization.Strings.General.MapItemStackable.ToString(name, Strings.FormatQuantityAbbreviated(quantity)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this necessary? It should be in the same namespace right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still this question outstanding
…ch still applies fix: delete unnecessary csproj fix: change assembly attribute parameter from "Intersect.Client" (period) to "Intersect Client" (space)
28f6d84
to
f4a598c
Compare
Intersect.Client.Core/Program.cs
Outdated
/// The main entry point for the application. | ||
/// </summary> | ||
[STAThread] | ||
public static void Main(string[] args) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be public after our other changes?
@@ -801,7 +801,7 @@ public void DrawItemNames() | |||
var rarity = itemBase.Rarity; | |||
if (tileItems[index].Quantity > 1) | |||
{ | |||
name = Localization.Strings.General.MapItemStackable.ToString(name, Strings.FormatQuantityAbbreviated(quantity)); | |||
name = Intersect.Client.Localization.Strings.General.MapItemStackable.ToString(name, Strings.FormatQuantityAbbreviated(quantity)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still this question outstanding
This opens up the possibility of merging the editor with the client (and who knows what else)