From 501a507aa4e361cd3a2f5183758e47ab883a8a96 Mon Sep 17 00:00:00 2001 From: tacoguy7765093 Date: Thu, 21 Mar 2024 07:52:16 -0500 Subject: [PATCH] Buffing non-CE blueprints (#8010) --- code/game/objects/items/blueprints_vr.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/blueprints_vr.dm b/code/game/objects/items/blueprints_vr.dm index 497bfc8cd4..daced8d6b9 100644 --- a/code/game/objects/items/blueprints_vr.dm +++ b/code/game/objects/items/blueprints_vr.dm @@ -71,8 +71,8 @@ in_use = FALSE preserve_item = 1 var/uses_charges = 0 // If the area editor has limited uses. - var/initial_charges = 10 - var/charges = 10 // The amount of uses the area editor has. + var/initial_charges = 25 //CHOMPedit + var/charges = 25 // The amount of uses the area editor has. //CHOMPedit var/station_master = 1 // If the areaeditor can add charges to others. var/wire_schematics = 0 // If the areaeditor can see wires. var/can_override = 0 // If you want the areaeditor to override the 'Don't make a new area where one already exists' logic. Only given to CE blueprints. @@ -244,7 +244,7 @@ desc = "A piece of paper that allows for expansion of the station and creation of new areas. There is a \"For Official Use Only\" stamp on it. NOT to be mistaken with the station blueprints." // CHOMPEDIT : purdev (some spelling fixes) station_master = 0 uses_charges = 1 - can_override = 0 + can_override = 1 //CHOMPedit, This will allow easier building on the planets, dont think blueprint grief is too big of a problem. -Lotion