From a5acef06661a12b4942a82013fae7df4443257e3 Mon Sep 17 00:00:00 2001 From: Stijn Bannink Date: Thu, 10 Aug 2023 19:32:12 +0200 Subject: [PATCH] Fixed typo in README --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b2a8f1f..9da7ea1 100644 --- a/README.md +++ b/README.md @@ -50,13 +50,13 @@ controller.showInHand(p, true); It's also possible to split one image onto multiple itemframes. For example using the following code. ```java -BufferedImage leftTopFrame = ...; -BufferedImage leftBottomFrame = ...; -BufferedImage rightTopFrame = ...; -BufferedImage rightBottomFrame = ...; +BufferedImage leftTopImg = ...; +BufferedImage leftBottomImg = ...; +BufferedImage rightTopImg = ...; +BufferedImage rightBottomImg = ...; BufferedImage[][] images = { - {leftBottomFrame, leftTopFrame}, - {rightBottomFrame, rightTopFrame} + {leftBottomImg, leftTopImg}, + {rightBottomImg, rightTopImg} }; //--- Wrap image ---