3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-05 11:00:05 +01:00

fix //none for tools

Dieser Commit ist enthalten in:
Jesse Boyd 2019-04-11 11:28:06 +10:00
Ursprung a7c5580db3
Commit f726c9afc4
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 59F1DE6293AF6E1F

Datei anzeigen

@ -1073,6 +1073,8 @@ public class LocalSession implements TextureHolder {
BrushCache.setTool(item, (BrushTool) tool); BrushCache.setTool(item, (BrushTool) tool);
if (tool != null) { if (tool != null) {
((BrushTool) tool).setHolder(item); ((BrushTool) tool).setHolder(item);
} else {
this.tools[type.getInternalId()] = null;
} }
} else { } else {
previous = this.tools[type.getInternalId()]; previous = this.tools[type.getInternalId()];