diff --git a/code/game/turfs/simulated/floor_attackby.dm b/code/game/turfs/simulated/floor_attackby.dm
index 9aa7ecce6de..c04cc306ff2 100644
--- a/code/game/turfs/simulated/floor_attackby.dm
+++ b/code/game/turfs/simulated/floor_attackby.dm
@@ -121,10 +121,10 @@
if(broken || burnt)
to_chat(user, "You remove the broken [flooring.descriptor].")
make_plating()
- else if(flooring.flags & TURF_IS_FRAGILE)
- to_chat(user, "You forcefully pry off the [flooring.descriptor], destroying them in the process.")
- make_plating()
- else if(flooring.flags & TURF_REMOVE_CROWBAR)
+ //else if(flooring.flags & TURF_IS_FRAGILE)
+ // to_chat(user, "You pry off the [flooring.descriptor].")
+ // make_plating(1)
+ else if(flooring.flags & TURF_REMOVE_CROWBAR || TURF_IS_FRAGILE)
to_chat(user, "You lever off the [flooring.descriptor].")
make_plating(1)
else