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

Commit

Permalink
🎨 Layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Chasmical committed Mar 7, 2022
1 parent 38d8e0d commit 8375464
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ private static void Patch_ATMMachine()
Patch<ATMMachine>(Params2);
PatchInteract<ATMMachine>();
PatchInteractFar<ATMMachine>();

RogueInteractions.CreateProvider<ATMMachine>(static h =>
{
if (!h.Object.functional)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ private static void Patch_AlarmButton()
Patch<AlarmButton>(Params2);
PatchInteract<AlarmButton>();
PatchInteractFar<AlarmButton>();

RogueLibs.CreateCustomName("PressAlarmButton", NameTypes.Interface, new CustomNameInfo
{
English = "Press",
Expand Down
1 change: 1 addition & 0 deletions RogueLibsCore/Interactions/VanillaInteractions/Altar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ private static void Patch_Altar()
PatchInteract<Altar>();
PatchInteractFar<Altar>();
MakeInteractable<Altar>();

RogueInteractions.CreateProvider<Altar>(static h =>
{
if (!h.Object.functional)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ private static void Patch_AmmoDispenser()
Patch<AmmoDispenser>(Params2);
PatchInteract<AmmoDispenser>();
PatchInteractFar<AmmoDispenser>();

RogueInteractions.CreateProvider<AmmoDispenser>(static h =>
{
if (!h.Object.functional)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ private static void Patch_ArcadeGame()
PatchInteract<ArcadeGame>();
PatchInteractFar<ArcadeGame>();
MakeInteractable<ArcadeGame>();

RogueInteractions.CreateProvider<ArcadeGame>(static h =>
{
if (!h.Object.functional)
Expand Down
1 change: 1 addition & 0 deletions RogueLibsCore/Interactions/VanillaInteractions/Barbecue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ private static void Patch_Barbecue()
{
Patch<Barbecue>(Params2);
PatchInteract<Barbecue>();

RogueInteractions.CreateProvider<Barbecue>(static h =>
{
if (!h.Object.functional)
Expand Down
1 change: 1 addition & 0 deletions RogueLibsCore/Interactions/VanillaInteractions/Bed.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ private static void Patch_Bed()
{
Patch<Bed>(Params1);
PatchInteract<Bed>();

RogueInteractions.CreateProvider<Bed>(static h =>
{
if (h.Helper.interactingFar) return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ private static void Patch_CapsuleMachine()
Patch<CapsuleMachine>(Params2);
PatchInteract<CapsuleMachine>();
PatchInteractFar<CapsuleMachine>();

RogueInteractions.CreateProvider<CapsuleMachine>(static h =>
{
if (!h.Object.functional || h.Object.numPurchases >= 3 && !h.gc.challenges.Contains("NoLimits"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ private static void Patch_CloneMachine()
Patch<CloneMachine>(Params2);
PatchInteract<CloneMachine>();
PatchInteractFar<CloneMachine>();

RogueInteractions.CreateProvider<CloneMachine>(static h =>
{
if (!h.Object.functional)
Expand Down
1 change: 1 addition & 0 deletions RogueLibsCore/Interactions/VanillaInteractions/Computer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ private static void Patch_Computer()
Patch<Computer>(Params1);
PatchInteract<Computer>();
PatchInteractFar<Computer>();

RogueInteractions.CreateProvider<Computer>(static h =>
{
if (!h.Object.functional)
Expand Down

0 comments on commit 8375464

Please sign in to comment.