diff --git a/sigIRCv2.jar b/sigIRCv2.jar index a651044..48e335b 100644 Binary files a/sigIRCv2.jar and b/sigIRCv2.jar differ diff --git a/src/sig/modules/BandoriModule.java b/src/sig/modules/BandoriModule.java index ba2aa9f..123cb83 100644 --- a/src/sig/modules/BandoriModule.java +++ b/src/sig/modules/BandoriModule.java @@ -94,6 +94,7 @@ public class BandoriModule extends Module{ image_map.put("hagumi_hooray", new ImageScheme(stamp_collection2,25)); image_map.put("tsugumi_amazing", new ImageScheme(stamp_collection2,26)); image_map.put("eve_thefruits", new ImageScheme(stamp_collection2,27)); + image_map.put("lisa_imnotready", new ImageScheme(stamp_collection2,28)); stamp_map.put("kasumi_gogo",Arrays.asList("gogo")); stamp_map.put("tae_letsplay",Arrays.asList("playtogether","wanttoplay","multilive","letsplay")); @@ -146,8 +147,9 @@ public class BandoriModule extends Module{ stamp_map.put("hagumi_hooray",Arrays.asList("hooray","hiphip","whoo","yahoo")); stamp_map.put("tsugumi_amazing",Arrays.asList("amazing","wow","sugoi","wooo","cool!","tsugurific")); stamp_map.put("eve_thefruits",Arrays.asList("fruits","labor","hardwork","effort")); + stamp_map.put("lisa_imnotready",Arrays.asList("notready","notprep","stopit","holdon","onemin","onemom","noread","wontberead","notrdy","nottime","notime","waitam","waitforme")); - /*for (String s : image_map.keySet()) { + for (String s : image_map.keySet()) { ImageScheme scheme = image_map.get(s); try { BufferedImage img = crop(scheme.base,scheme.stamp_index%6*270+4, scheme.stamp_index/6*223+3, 258, 214); @@ -155,7 +157,7 @@ public class BandoriModule extends Module{ } catch (IOException e) { e.printStackTrace(); } - }*/ + } } public BufferedImage crop(BufferedImage img, int x, int y, int targetWidth, int targetHeight) throws IOException {