()
| 290 | |
| 291 | // Add a new shield to the current panel's sign, update the shield subform, and redraw the sign. |
| 292 | const newShield = function() { |
| 293 | const sign = post.panels[currentlySelectedPanelIndex].sign; |
| 294 | sign.newShield(currentlySelectedSubPanelIndex); |
| 295 | updateShieldSubform(); |
| 296 | redraw(); |
| 297 | }; |
| 298 | |
| 299 | // Delete the current shield, update the shield subform, and redraw the sign |
| 300 | const deleteShield = function(shieldIndex) { |
nothing calls this directly
no test coverage detected