Skip to content

Commit

Permalink
Logo & Version Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DigiWorm0 committed Aug 24, 2022
1 parent f3e82d9 commit f3f7521
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LevelImposter/LevelImposter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace LevelImposter
public class LevelImposter : BasePlugin
{
public const string ID = "com.DigiWorm.LevelImposter";
public const string VERSION = "0.4.1";
public const string VERSION = "0.5.0";
public const string REACTOR_ID = "gg.reactor.api";

public HarmonyLib.Harmony Harmony { get; } = new HarmonyLib.Harmony(ID);
Expand Down
2 changes: 1 addition & 1 deletion LevelImposter/LevelImposter.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>LevelImposter</Title>
<Version>2.0.1</Version>
<Version>0.5.0</Version>
<Description>Custom Among Us Mapping Studio</Description>
<Authors>DigiWorm</Authors>

Expand Down
2 changes: 1 addition & 1 deletion LevelImposter/Shop/Patches/VersionPatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static void Postfix(VersionShower __instance)

GameObject logoObj = new GameObject("LevelImposterVersion " + antiPiracy);
logoObj.transform.SetParent(__instance.transform.parent);
logoObj.transform.localPosition = new Vector3(-4.5f, 1.8f, -1.0f);
logoObj.transform.localPosition = new Vector3(4.0f, -2.75f, -1.0f);
logoObj.layer = (int)Layer.UI;

SpriteRenderer logoRenderer = logoObj.AddComponent<SpriteRenderer>();
Expand Down

0 comments on commit f3f7521

Please sign in to comment.