rename fct recoltoble -> recoltable

This commit is contained in:
Amaury Joly 2020-12-12 16:22:36 +01:00
parent 78aadac3da
commit 304a9c851a
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ public abstract class DecorFond extends ElementFond {
} }
@Override @Override
public boolean estRectoble() { public boolean estRectable() {
return false; return false;
} }
} }

View File

@ -8,5 +8,5 @@ public abstract class ElementFond extends ObjetGyromide {
} }
public abstract boolean peutPermettreDeMonterDescendre(); public abstract boolean peutPermettreDeMonterDescendre();
public abstract boolean estRectoble(); public abstract boolean estRectable();
} }

View File

@ -14,7 +14,7 @@ public abstract class Items extends ElementFond implements ElementDynamique {
} }
@Override @Override
public boolean estRectoble() { public boolean estRectable() {
return true; return true;
} }