mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 06:00:16 +01:00
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 🆑 fix: The plasma flower modsuit core now actually contains a reasonable quantity of power. /🆑
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user