From 88d89c0e223622b5bf0bf905ad106f14e1e8374f Mon Sep 17 00:00:00 2001 From: asayre Date: Thu, 11 Jan 2007 06:24:58 +0000 Subject: [PATCH] Oops, compile errors --- Scripts/Gumps/HouseGumpAOS.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Scripts/Gumps/HouseGumpAOS.cs b/Scripts/Gumps/HouseGumpAOS.cs index d6db33d64..019a7a508 100644 --- a/Scripts/Gumps/HouseGumpAOS.cs +++ b/Scripts/Gumps/HouseGumpAOS.cs @@ -1259,10 +1259,10 @@ namespace Server.Gumps { switch( index ) { - case 5: newType = FoundationType.ElvenGrey; - case 6: newType = FoundationType.ElvenNatural; - case 7: newType = FoundationType.Crystal; - case 8: newType = FoundationType.Shadow; + case 5: newType = FoundationType.ElvenGrey; break; + case 6: newType = FoundationType.ElvenNatural; break; + case 7: newType = FoundationType.Crystal; break; + case 8: newType = FoundationType.Shadow; break; default: return; } }