diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/p_inter.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/p_inter.c b/src/p_inter.c index ee91bcd6..dda55c37 100644 --- a/src/p_inter.c +++ b/src/p_inter.c @@ -734,6 +734,12 @@ P_KillMobj // I_StartSound (&actor->r, actor->info->deathsound); + // In Chex Quest, monsters don't drop items. + + if (gameversion == exe_chex) + { + return; + } // Drop stuff. // This determines the kind of object spawned |