3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-22 10:08:02 +02:00

etc.getDataSource() is now static; updated.

Dieser Commit ist enthalten in:
sk89q 2010-10-04 22:44:55 -07:00
Ursprung 48aeb58bbb
Commit 87780f0a78

Datei anzeigen

@ -105,7 +105,7 @@ public class WorldEdit extends Plugin {
foundID = Integer.parseInt(id);
} catch (NumberFormatException e) {
try {
foundID = etc.getInstance().getDataSource().getItem(id);
foundID = etc.getDataSource().getItem(id);
} catch (NumberFormatException e2) {
throw new UnknownItemException();
}