Skip to content

Commit

Permalink
MalumMenu v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
scp222thj committed Dec 26, 2023
1 parent 392c2b5 commit 7e286cf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
14 changes: 11 additions & 3 deletions FEATURES.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
- [Oxygen](#oxygen)
- [Eletrical](#eletrical)
- [Comms](#comms)
- [Mushroom Mixup](#mushroom-mixup)
- [MushroomMixup](#mushroommixup)
- [SporesTrigger](#sporestrigger)
- [Vents](#vents)
- [UseVents](#usevents)
- [KickVents](#kickvents)
Expand Down Expand Up @@ -120,6 +121,8 @@ Type: **Toggle**
### FullBright
Removes all shadows, allowing you to see during blackouts and even through walls

It also allows you to see players through spore clouds on the Fungle map

Type: **Toggle**
- Default: **OFF**

Expand Down Expand Up @@ -258,8 +261,13 @@ Enables/Disables Communications sabotage

Type: **Button**

### Mushroom Mixup
Induces a Mushroom Mixup on Fungle ship
### MushroomMixup
Induces a Mushroom Mixup on Fungle map

Type: **Button**

### SporesTrigger
Shoots spore clouds out of all the mushrooms in the Fungle jungle

Type: **Button**

Expand Down
2 changes: 1 addition & 1 deletion src/ESP/EspMushroomPatches.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public static class ESP_SeePlayersInSporesPostfix
{
public static void Postfix(Mushroom __instance)
{
if (CheatSettings.fullBright)
if (ESP_HudManagerPostfix.fullBrightActive)
{
__instance.sporeMask.transform.position = new UnityEngine.Vector3(__instance.sporeMask.transform.position.x, __instance.sporeMask.transform.position.y, -1);
return;
Expand Down
2 changes: 1 addition & 1 deletion src/Tracers/TracerPatches.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static void Postfix(PlayerPhysics __instance){
DeadBody deadBody = bodyObject.GetComponent<DeadBody>();

if (deadBody){
if (!deadBody.Reported){ //Only "fresh" dead bodies have tracers
if (!deadBody.Reported){ //Only unreported dead bodies have tracers

//Tracers are just LineRenderers for each dead body
lineRenderer = bodyObject.GetComponent<LineRenderer>();
Expand Down

0 comments on commit 7e286cf

Please sign in to comment.