Skip to content
This repository was archived by the owner on Dec 30, 2024. It is now read-only.

Commit f44eddd

Browse files
committed
🚚 Update my username
1 parent 5fbd81b commit f44eddd

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

‎RogueLibsCore/Names/Localization/Localization.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ private static bool PermitDownload()
4747
private static LanguageVersions? Versions;
4848
private static bool DownloadIndex()
4949
{
50-
const string url = "https://raw.githubusercontent.com/SugarBarrel/RogueLibs/main/RogueLibsCore/Resources/locale.index.xml";
50+
const string url = "https://raw.githubusercontent.com/Chasmical/RogueLibs/main/RogueLibsCore/Resources/locale.index.xml";
5151
string downloadPath = Path.Combine(localePath, ".vanilla.index.xml");
5252
try
5353
{
@@ -118,7 +118,7 @@ private static int ReadPrefix(XmlReader reader)
118118
}
119119
private static void UpdateLanguage(string language, string filePath, int newVersion)
120120
{
121-
string url = $"https://raw.githubusercontent.com/SugarBarrel/RogueLibs/main/RogueLibsCore/Resources/locale.{language}.xml";
121+
string url = $"https://raw.githubusercontent.com/Chasmical/RogueLibs/main/RogueLibsCore/Resources/locale.{language}.xml";
122122
string downloadPath = filePath + ".download";
123123
WebClient web = new WebClient();
124124
try

‎RogueLibsPatcher/RogueLibsPatcher.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static void PatchField(string typeName, string fieldName)
7777

7878
if (type.Fields is null) Error(5, typeName);
7979
// Note: Do not use LINQ here. Apparently, some versions of Mono may be missing System.Func and System.Action.
80-
// (see https://github.com/SugarBarrel/ECTD/issues/4)
80+
// (see https://github.com/Chasmical/ECTD/issues/4)
8181
for (int i = 0, count = type.Fields.Count; i < count; i++)
8282
if (type.Fields[i].Name == fieldName)
8383
return;

‎docs/advanced/hooks.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ If you want to attach hooks to instances right when they are initialized, use [H
7777
## Examples {#examples}
7878

7979
:::info
80-
Custom content classes (`CustomItem`, `CustomTrait`, `CustomEffect`, `CustomAbility` and others) are hooks, by the way. You can see the custom classes' implementation in [RogueLibs' source code](https://github.com/SugarBarrel/RogueLibs/tree/main/RogueLibsCore/Hooks).
80+
Custom content classes (`CustomItem`, `CustomTrait`, `CustomEffect`, `CustomAbility` and others) are hooks, by the way. You can see the custom classes' implementation in [RogueLibs' source code](https://github.com/Chasmical/RogueLibs/tree/main/RogueLibsCore/Hooks).
8181
:::
8282

8383
<Tabs>

‎docs/getting-started/introduction.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: Why should you use RogueLibs? Because it's really easy to use! Also
1111

1212
- <span style={{ fontSize: "1.1em" }}>
1313

14-
Because it's really easy to use! Just check out some examples in [here](https://github.com/SugarBarrel/RogueLibs/tree/main/RogueLibsCore.Test/Tests).
14+
Because it's really easy to use! Just check out some examples in [here](https://github.com/Chasmical/RogueLibs/tree/main/RogueLibsCore.Test/Tests).
1515

1616
</span>
1717

‎docs/localization/custom-languages.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ LanguageCode code = LanguageService.RegisterLanguageCode("japanese");
1212
```
1313

1414
:::info{title="Work-In-Progress"}
15-
There hasn't been much progress on actually implementing custom languages. No one has ever translated the entire game to a different language, not yet included with SoR. When that time comes, feel free to [create an issue on GitHub](https://github.com/SugarBarrel/RogueLibs/issues/new/choose).
15+
There hasn't been much progress on actually implementing custom languages. No one has ever translated the entire game to a different language, not yet included with SoR. When that time comes, feel free to [create an issue on GitHub](https://github.com/Chasmical/RogueLibs/issues/new/choose).
1616
:::
1717

1818
## `LanguageService` {#languageservice}

0 commit comments

Comments
 (0)