Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion cev_eris.dme
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,6 @@
#include "code\game\gamemodes\events\spacevine.dm"
#include "code\game\gamemodes\events\spider_infestation.dm"
#include "code\game\gamemodes\events\supply_pod.dm"
#include "code\game\gamemodes\events\wallrot.dm"
#include "code\game\gamemodes\events\weather.dm"
#include "code\game\gamemodes\events\wormholes.dm"
#include "code\game\gamemodes\events\hidden_events\bluespace_crystal_infestation.dm"
Expand Down
87 changes: 0 additions & 87 deletions code/game/gamemodes/events/wallrot.dm

This file was deleted.

10 changes: 0 additions & 10 deletions code/game/turfs/simulated/wall_attacks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,6 @@
to_chat(user, span_notice("You ignite the thermite!"))
thermitemelt(user)

else if(locate(/obj/effect/overlay/wallrot) in src)
if(I.use_tool(user, src, WORKTIME_FAST, tool_type, FAILCHANCE_NORMAL, required_stat = STAT_MEC))
to_chat(user, span_notice("You burn away the fungi."))
for(var/obj/effect/overlay/wallrot/wallrot in src)
qdel(wallrot)

else if(deconstruction_steps_left == 1) // Finishing deconstruction
if(I.use_tool(user, src, WORKTIME_SLOW, tool_type, FAILCHANCE_NORMAL, required_stat = STAT_MEC))
to_chat(user, span_notice("You dismantle the [src]."))
Expand Down Expand Up @@ -236,10 +230,6 @@
add_fingerprint(user)
user.setClickCooldown(DEFAULT_ATTACK_COOLDOWN)
user.do_attack_animation(src)
if(locate(/obj/effect/overlay/wallrot) in src)
to_chat(user, span_danger("The wall crumbles under your touch!"))
dismantle_wall(user)
return
if(window_type)
if(user.a_intent == I_HURT)
user.animate_interact(src, INTERACT_HARM)
Expand Down
9 changes: 1 addition & 8 deletions code/game/turfs/simulated/walls.dm
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,6 @@


/turf/wall/ChangeTurf(new_turf_type, force_lighting_update)
for(var/obj/effect/overlay/wallrot/WR in src)
qdel(WR)
for(var/obj/effect/plant/plant in range(src, 1))
if(plant.wall_mount == src) //shrooms drop to the floor
qdel(plant)
Expand Down Expand Up @@ -287,10 +285,6 @@
else
extra_description += span_notice("\nYou can dismantle this wall by welding.")

if(locate(/obj/effect/overlay/wallrot) in src)
extra_description += span_warning("\nThere is a corrosive fungus growing on it, one touch and entire wall will crumble.")
extra_description += span_warning("\nDirectly applying heat will remove the fungus.")

if(window_type)
var/material/glass/window_material = get_material_by_name(window_type)
if(window_material && window_material.display_name)
Expand Down Expand Up @@ -327,8 +321,7 @@
return
if(damage < 1)
return
if(locate(/obj/effect/overlay/wallrot) in src)
damage *= 10

. = min(health, damage)
health -= damage
if(health <= 0)
Expand Down
9 changes: 0 additions & 9 deletions code/modules/reagents/reagents/toxins.dm
Original file line number Diff line number Diff line change
Expand Up @@ -260,15 +260,6 @@
color = "#49002E"
strength = 0.4

/datum/reagent/toxin/plantbgone/touch_turf(turf/T)
if(istype(T, /turf/wall))
var/turf/wall/W = T
if(locate(/obj/effect/overlay/wallrot) in W)
for(var/obj/effect/overlay/wallrot/E in W)
qdel(E)
W.visible_message(span_notice("The fungi are completely dissolved by the solution!"))
return TRUE

/datum/reagent/toxin/plantbgone/touch_obj(obj/O, volume)
if(istype(O, /obj/effect/plant) && !istype(O, /obj/effect/plant/hivemind))
qdel(O)
Expand Down
Loading