Skip to content

Commit

Permalink
[MIRROR] Fixes plasma flower modsuit cores having an extremely small …
Browse files Browse the repository at this point in the history
…amount of power (#2183)

* Fixes plasma flower modsuit cores having an extremely small amount of power (#82842)

## About The Pull Request

The var was still using the old values.

## Why It's Good For The Game

15 kj instantly depletes your power supply upon taking a step. Oof.

## Changelog
:cl:
fix: The plasma flower modsuit core now actually contains a reasonable
quantity of power.
/:cl:

* Fixes plasma flower modsuit cores having an extremely small amount of power

---------

Co-authored-by: necromanceranne <[email protected]>
  • Loading branch information
2 people authored and StealsThePRs committed Apr 25, 2024
1 parent 0cfd747 commit 07398cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mod/mod_core.dm
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,8 @@
light_power = 1.5
// Slightly better than the normal plasma core.
// Not super sure if this should just be the same, but will see.
maxcharge = 15000
charge = 15000
maxcharge = 15 * STANDARD_CELL_CHARGE
charge = 15 * STANDARD_CELL_CHARGE
/// The mob to be spawned by the core
var/mob/living/spawned_mob_type = /mob/living/basic/butterfly/lavaland/temporary
/// Max number of mobs it can spawn
Expand Down

0 comments on commit 07398cc

Please sign in to comment.