From 6b884fd8a6435de15d762ff7207701296785295e Mon Sep 17 00:00:00 2001 From: "musketstgstation@gmail.com" Date: Wed, 29 Sep 2010 20:53:04 +0000 Subject: [PATCH] Fixed the missing Cuba Libre glass and added an else-case so that glasses shouldn't disappear if something new is missing an iconstate. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@226 316c924e-a436-60f5-8080-3fe189b3f50e --- code/WorkInProgress/Chemistry-Tools.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/WorkInProgress/Chemistry-Tools.dm b/code/WorkInProgress/Chemistry-Tools.dm index fa7241e6348..dfed9ad83ff 100644 --- a/code/WorkInProgress/Chemistry-Tools.dm +++ b/code/WorkInProgress/Chemistry-Tools.dm @@ -1889,6 +1889,14 @@ icon_state = "irishcreamglass" name = "Irish Cream" desc = "It's cream, mixed with whiskey. What else would you expect from the Irish?" + if("Cuba Libre") + icon_state = "cubalibreglass" + name = "Cuba Libre" + desc = "A classic mix of rum and cola." + else + icon_state ="glass_brown" + name = "Glass of ..what?" + desc = "You can't really tell what this is." else icon_state = "glass_empty" name = "Drinking glass"