summaryrefslogtreecommitdiff
path: root/src-19_triffids-do-not-burrow.patch
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2025-01-18 21:46:00 -0800
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2025-01-18 21:46:00 -0800
commit7e224c97ae2728472180322f625dafa545f21f7f (patch)
tree61a296000b3a05d36cde4de0d8bd5e5179ee21ab /src-19_triffids-do-not-burrow.patch
parentAdd plastic scrap is stackable patch. (diff)
downloadcataclysm-bn-7e224c97ae2728472180322f625dafa545f21f7f.tar.xz
Convert the PKGBUILD to my own fork of cataclysm-bn.HEADmaster
Diffstat (limited to 'src-19_triffids-do-not-burrow.patch')
-rw-r--r--src-19_triffids-do-not-burrow.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/src-19_triffids-do-not-burrow.patch b/src-19_triffids-do-not-burrow.patch
deleted file mode 100644
index b7d422b..0000000
--- a/src-19_triffids-do-not-burrow.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/src/monattack.cpp
-+++ b/src/monattack.cpp
-@@ -1450,9 +1450,12 @@
- continue;
- }
-
-+ // 1 in 3 chance to terraform diggable terrain
- if( g->m.is_bashable( p ) && one_in( 3 ) ) {
-- // Destroy everything
-- g->m.destroy( p );
-+ if( g->m.has_furn( p ) ) {
-+ // Destroy any furniture
-+ g->m.destroy_furn( p );
-+ }
- // And then make the ground fertile
- g->m.ter_set( p, t_dirtmound );
- continue;