From 09ef8036ed42825df2abc01abb5d7bc20bf2fc1e Mon Sep 17 00:00:00 2001 From: MaxSMokeSkaarj Date: Sat, 18 Jan 2025 14:16:17 +1000 Subject: [PATCH] test --- .github/workflows/benchmarks.yml | 2 +- .github/workflows/labeler-review.yml | 2 +- .github/workflows/publish.yml | 5 ++++- .github/workflows/update-credits.yml | 2 +- .gitmodules | 10 +++------- .../Localizations/ContentLocalizationManager.cs | 4 ++-- .../Prototypes/Entities/Mobs/NPCs/behonker.yml | 17 ++++++++--------- Resources/Prototypes/Guidebook/rules.yml | 6 ------ Tools/publish_multi_request.py | 4 ++-- 9 files changed, 22 insertions(+), 30 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 491c4075e4..3a6129c7a6 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -30,7 +30,7 @@ jobs: script: | mkdir benchmark_run_content_${{ github.sha }} cd benchmark_run_content_${{ github.sha }} - git clone https://github.com/MaxSMokeSkaarj/space-station-14.git repo_dir --recursive + git clone https://github.com/space-wizards/space-station-14.git repo_dir --recursive cd repo_dir git checkout ${{ github.sha }} cd Content.Benchmarks diff --git a/.github/workflows/labeler-review.yml b/.github/workflows/labeler-review.yml index b5b4c609f2..0adfee7d0e 100644 --- a/.github/workflows/labeler-review.yml +++ b/.github/workflows/labeler-review.yml @@ -5,7 +5,7 @@ on: jobs: add_label: # Change the repository name after you've made sure the team name is correct for your fork! - if: ${{ (github.repository == 'MaxSMokeSkaarj/space-station-14') && (github.event.review.state == 'APPROVED') }} + if: ${{ (github.repository == 'space-wizards/space-station-14') && (github.event.review.state == 'APPROVED') }} permissions: contents: read pull-requests: write diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3808a93074..d035843a23 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,7 +3,10 @@ name: Publish concurrency: group: publish -on: [push] +on: + workflow_dispatch: + # schedule: + # - cron: '0 10 * * *' jobs: build: diff --git a/.github/workflows/update-credits.yml b/.github/workflows/update-credits.yml index 7889604f90..87babfa2a6 100644 --- a/.github/workflows/update-credits.yml +++ b/.github/workflows/update-credits.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest # Hey there fork dev! If you like to include your own contributors in this then you can probably just change this to your own repo # Do this in dump_github_contributors.ps1 too into your own repo - if: github.repository == 'MaxSMokeSkaarj/space-station-14' + if: github.repository == 'space-wizards/space-station-14' steps: - uses: actions/checkout@v3.6.0 diff --git a/.gitmodules b/.gitmodules index 8c2ff84dd1..08e5dd6d0a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,8 +1,4 @@ [submodule "RobustToolbox"] - path = RobustToolbox - url = https://github.com/space-wizards/RobustToolbox.git - branch = master -[submodule "Corvax-SS14"] - path = Corvax-SS14 - url = https://github.com/space-syndicate/space-station-14 - branch = master + path = RobustToolbox + url = https://github.com/space-wizards/RobustToolbox.git + branch = master \ No newline at end of file diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index 507fcb8bd9..e60ca74a37 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Localizations [Dependency] private readonly ILocalizationManager _loc = default!; // If you want to change your codebase's language, do it here. - private const string Culture = "ru-RU"; + private const string Culture = "en-US"; /// /// Custom format strings used for parsing and displaying minutes:seconds timespans. @@ -44,7 +44,7 @@ namespace Content.Shared.Localizations * localization you should NOT modify these, instead add new functions specific to your language/culture. * This ensures the english translations continue to work as expected when fallbacks are needed. */ - var cultureEn = new CultureInfo("ru-RU"); + var cultureEn = new CultureInfo("en-US"); _loc.AddFunction(cultureEn, "MAKEPLURAL", FormatMakePlural); _loc.AddFunction(cultureEn, "MANY", FormatMany); diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml b/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml index a330abe231..6a20a50315 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/behonker.yml @@ -122,15 +122,6 @@ name: behonker parent: BaseMobBehonker id: MobBehonkerElectrical - suffix: "Electrical" - components: - - type: ElectricityAnomaly - - type: Electrified - -- type: entity - name: behonker - parent: BaseMobBehonker - id: MobBehonkerPyro suffix: "Pyro" components: - type: PyroclasticAnomaly @@ -142,6 +133,14 @@ releaseOnMaxSeverity: true spawnRadius: 0 +- type: entity + name: behonker + parent: BaseMobBehonker + id: MobBehonkerPyro + suffix: "Electrical" + components: + - type: ElectricityAnomaly + - type: Electrified - type: entity name: behonker diff --git a/Resources/Prototypes/Guidebook/rules.yml b/Resources/Prototypes/Guidebook/rules.yml index 59ba795359..88af0ca505 100644 --- a/Resources/Prototypes/Guidebook/rules.yml +++ b/Resources/Prototypes/Guidebook/rules.yml @@ -429,9 +429,3 @@ ruleEntry: true priority: 100 text: "/ServerInfo/Guidebook/ServerRules/BanDurations.xml" - -- type: guideEntry - id: SMoARuleset - name: guide-entry-rules-SMoA - ruleEntry: true - text: "/ServerInfo/Guidebook/ServerRules/PR.xml" diff --git a/Tools/publish_multi_request.py b/Tools/publish_multi_request.py index b9d61f3942..a63359afd6 100755 --- a/Tools/publish_multi_request.py +++ b/Tools/publish_multi_request.py @@ -14,8 +14,8 @@ RELEASE_DIR = "release" # CONFIGURATION PARAMETERS # Forks should change these to publish to their own infrastructure. # -ROBUST_CDN_URL = "https://ss14.smokeofanarchy.ru/cdn/" -FORK_ID = "main" +ROBUST_CDN_URL = "https://wizards.cdn.spacestation14.com/" +FORK_ID = "wizards" def main(): session = requests.Session() -- 2.52.0