Skip to content

Commit a9b629e

Browse files
committed
Fix bug with pavement removal being forbidden for all followers
1 parent 3bdbedd commit a9b629e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/gotti/wurmunlimited/mods/spellmod/SpellMod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public void onServerStarted() {
8181
if (removePriestRestrictions) {
8282
try {
8383
ReflectionUtil.setPrivateField(deity, buildWallBonus, Float.valueOf(0.0f));
84-
ReflectionUtil.setPrivateField(deity, roadProtector, Boolean.TRUE);
84+
ReflectionUtil.setPrivateField(deity, roadProtector, Boolean.FALSE);
8585
} catch (IllegalAccessException | IllegalArgumentException | ClassCastException e) {
8686
logger.log(Level.WARNING, e.getMessage(), e);
8787
}

0 commit comments

Comments
 (0)