Page MenuHomeFeedback Tracker

Hammer SoundSet missing
Closed, DuplicatePublic

Description

When performing any action using the Hammer, there is no sound played.
The cause of this is that the soundLookupTable "MinningBuilding_LookupTable" inside class AnimEvents is not existing anywhere.

before (working still if you override):

		class AnimEvents
		{
			class SoundWeapon
			{
				class pickup
				{
					soundSet="hatchet_pickup_SoundSet";
					id=797;
				};
				class drop
				{
					soundset="woodaxe_drop_SoundSet";
					id=898;
				};
				class WoodHammer_SoundSet
				{
					soundSet="WoodHammer_SoundSet";
					id=11161;
				};
			};
		};

new (not working anymore):

		class AnimEvents
		{
			class SoundWeapon
			{
				class pickup
				{
					soundSet="hatchet_pickup_SoundSet";
					id=797;
				};
				class drop
				{
					soundset="woodaxe_drop_SoundSet";
					id=898;
				};
				class MinningBuilding
				{
					soundLookupTable="MinningBuilding_LookupTable";
					id=11161;
				};
			};
		};

Details

Severity
Trivial
Resolution
Open
Reproducibility
Always
Operating System
Windows 10 x64
Category
General
Steps To Reproduce

open config.cpp of:

DZ\gear\tools

class Hammer

Event Timeline

Tyson created this task.Mar 12 2024, 10:21 AM
Tyson updated the task description. (Show Details)
Geez closed this task as a duplicate of Restricted Maniphest Task.Mar 12 2024, 10:47 AM