diff options
Diffstat (limited to 'src/Simulator')
-rw-r--r-- | src/Simulator/IncrementalRedstoneSimulator/PressurePlateHandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Simulator/IncrementalRedstoneSimulator/PressurePlateHandler.h b/src/Simulator/IncrementalRedstoneSimulator/PressurePlateHandler.h index 0944c5f8e..9f490b458 100644 --- a/src/Simulator/IncrementalRedstoneSimulator/PressurePlateHandler.h +++ b/src/Simulator/IncrementalRedstoneSimulator/PressurePlateHandler.h @@ -195,7 +195,7 @@ private: switch (a_BlockType) { case E_BLOCK_STONE_PRESSURE_PLATE: - return "block.wood_pressureplate.click_on"; + return "block.stone_pressureplate.click_on"; case E_BLOCK_WOODEN_PRESSURE_PLATE: return "block.wood_pressureplate.click_on"; case E_BLOCK_HEAVY_WEIGHTED_PRESSURE_PLATE: @@ -211,11 +211,11 @@ private: static AString GetClickOffSound(BLOCKTYPE a_BlockType) { - // manage on-sound + // manage off-sound switch (a_BlockType) { case E_BLOCK_STONE_PRESSURE_PLATE: - return "block.wood_pressureplate.click_off"; + return "block.stone_pressureplate.click_off"; case E_BLOCK_WOODEN_PRESSURE_PLATE: return "block.wood_pressureplate.click_off"; case E_BLOCK_HEAVY_WEIGHTED_PRESSURE_PLATE: |