From 6635cc58ed1fa30dff5d25b8b96bb29e4580068c Mon Sep 17 00:00:00 2001 From: Gabriel Ravier Date: Tue, 5 Nov 2019 17:10:12 +0100 Subject: [PATCH] Documentation : Comment identical case branches in NpcAct280 --- src/NpcAct280.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NpcAct280.cpp b/src/NpcAct280.cpp index 8c4b18e2..db423240 100644 --- a/src/NpcAct280.cpp +++ b/src/NpcAct280.cpp @@ -747,11 +747,11 @@ void ActNpc284(NPCHAR *npc) npc->act_no = 34; break; - case 0: + case 0: // Identical to case 2 npc->act_no = 32; break; - case 2: + case 2: // Identical to case 0 npc->act_no = 32; break; }