mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-14 19:29:57 +01:00
Hotfixes (#465)
This commit is contained in:
2317
Content.Server.Database/Migrations/Postgres/20260117224235_CorvaxVulpkaninToVulpkanin.Designer.cs
generated
Normal file
2317
Content.Server.Database/Migrations/Postgres/20260117224235_CorvaxVulpkaninToVulpkanin.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,32 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace Content.Server.Database.Migrations.Postgres
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class CorvaxVulpkaninToVulpkanin : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.UpdateData(
|
||||
table: "profile",
|
||||
keyColumn: "species",
|
||||
keyValue: "CorvaxVulpkanin",
|
||||
column: "species",
|
||||
value: "Vulpkanin");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.UpdateData(
|
||||
table: "profile",
|
||||
keyColumn: "species",
|
||||
keyValue: "Vulpkanin",
|
||||
column: "species",
|
||||
value: "CorvaxVulpkanin");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -21,7 +21,7 @@ namespace Content.Server.Database.Migrations.Postgres
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder
|
||||
.HasAnnotation("ProductVersion", "9.0.1")
|
||||
.HasAnnotation("ProductVersion", "10.0.0")
|
||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
||||
|
||||
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
||||
|
||||
2232
Content.Server.Database/Migrations/Sqlite/20260117224212_CorvaxVulpkaninToVulpkanin.Designer.cs
generated
Normal file
2232
Content.Server.Database/Migrations/Sqlite/20260117224212_CorvaxVulpkaninToVulpkanin.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,32 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace Content.Server.Database.Migrations.Sqlite
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class CorvaxVulpkaninToVulpkanin : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.UpdateData(
|
||||
table: "profile",
|
||||
keyColumn: "species",
|
||||
keyValue: "CorvaxVulpkanin",
|
||||
column: "species",
|
||||
value: "Vulpkanin");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.UpdateData(
|
||||
table: "profile",
|
||||
keyColumn: "species",
|
||||
keyValue: "Vulpkanin",
|
||||
column: "species",
|
||||
value: "CorvaxVulpkanin");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -15,7 +15,7 @@ namespace Content.Server.Database.Migrations.Sqlite
|
||||
protected override void BuildModel(ModelBuilder modelBuilder)
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder.HasAnnotation("ProductVersion", "9.0.1");
|
||||
modelBuilder.HasAnnotation("ProductVersion", "10.0.0");
|
||||
|
||||
modelBuilder.Entity("Content.Server.Database.Admin", b =>
|
||||
{
|
||||
|
||||
@@ -157,7 +157,7 @@ public sealed class LanguagesSystem : SharedLanguagesSystem
|
||||
comp.LastPopup = time;
|
||||
var message = Loc.GetString("languages-vacuum-block");
|
||||
|
||||
_popup.PopupEntity(message, source);
|
||||
_popup.PopupEntity(message, source, source);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -9,6 +9,9 @@ trait-language-oldearth-desc = Человеческий язык. Крайне
|
||||
trait-language-sinta = Синта'Унати
|
||||
trait-language-sinta-desc = Наиболее популярный язык среди унатхов.
|
||||
|
||||
trait-language-vulpa = Канилуц
|
||||
trait-language-vulpa-desc = Наиболее популярный язык среди вульпканинов.
|
||||
|
||||
trait-language-urhs = Урсахский
|
||||
trait-language-urhs-desc = Второй по популярности диалект Синта'Унати. Обладает большей грубостью.
|
||||
|
||||
|
||||
@@ -100,3 +100,17 @@
|
||||
- type: ModifyLanguages
|
||||
languages:
|
||||
- Wingdings
|
||||
|
||||
- type: trait
|
||||
id: Kuniluc
|
||||
name: trait-language-vulpa
|
||||
description: trait-language-vulpa-desc
|
||||
category: Languages
|
||||
cost: 1
|
||||
whitelist:
|
||||
components:
|
||||
- Languages
|
||||
components:
|
||||
- type: ModifyLanguages
|
||||
languages:
|
||||
- Kuniluc
|
||||
|
||||
Reference in New Issue
Block a user