Resource editor - ability to add bonus if no bonuses

This commit is contained in:
Azgaar 2021-05-31 23:17:06 +03:00
parent 4c1609459c
commit f49dd657b5
2 changed files with 10 additions and 6 deletions

View file

@ -294,9 +294,9 @@ function toggleBurgLock(burg) {
function showBurgLockTip(burg) {
const b = pack.burgs[burg];
if (b.lock) {
tip('Click to Unlock burg and allow it to be change by regeneration tools');
tip('Click to unlock burg and allow it to be change by regeneration tools');
} else {
tip('Click to Lock burg and prevent changes by regeneration tools');
tip('Click to lock burg and prevent changes by regeneration tools');
}
}