mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-03 16:49:03 +00:00
@@ -225,12 +225,7 @@ public class ItemData {
|
||||
try {
|
||||
FileInputStream dataIn = new FileInputStream(new File("./data/data/notes.dat"));
|
||||
while ((c = dataIn.read()) != -1) {
|
||||
if (c == 0) {
|
||||
itemIsNote[counter] = false;
|
||||
itemIsNote[4611] = false;
|
||||
} else {
|
||||
itemIsNote[counter] = true;
|
||||
}
|
||||
itemIsNote[counter] = c == 0;
|
||||
counter++;
|
||||
}
|
||||
dataIn.close();
|
||||
|
||||
Reference in New Issue
Block a user