From 9f6a5b7e3b0034dd1be94dd157ce61daf02e8e07 Mon Sep 17 00:00:00 2001 From: Felix Wallin Date: Mon, 16 Aug 2010 19:46:47 +0200 Subject: [PATCH] Added for noble too --- powder.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/powder.c b/powder.c index 74b23fc66..9132dd6d9 100755 --- a/powder.c +++ b/powder.c @@ -3023,6 +3023,20 @@ justdraw: } } } + else if(t==PT_NBLE) + { + for(x=-1; x<=1; x++) + { + for(y=-1; y<=1; y++) + { + if ((abs(x) == 0) && (abs(y) == 0)) + blendpixel(vid,x+nx,y+ny,235,73,23,100); + else if (abs(y) != 0 || abs(x) != 0) + blendpixel(vid,x+nx,y+ny,235,73,23,20); + } + } + + } else if(t==PT_GASS) { for(x=-1; x<=1; x++)